My Adobe XD plugin isn't showing up in the Plugin menu
up vote
3
down vote
favorite
I've started building a new plugin for Adobe XD, but for some reason, I can't see it in the plugin menu, even after several reloads.
I'm pretty sure I structured the folder correctly and I'm building in the correct develop folder...
plugins adobe-xd
add a comment |
up vote
3
down vote
favorite
I've started building a new plugin for Adobe XD, but for some reason, I can't see it in the plugin menu, even after several reloads.
I'm pretty sure I structured the folder correctly and I'm building in the correct develop folder...
plugins adobe-xd
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I've started building a new plugin for Adobe XD, but for some reason, I can't see it in the plugin menu, even after several reloads.
I'm pretty sure I structured the folder correctly and I'm building in the correct develop folder...
plugins adobe-xd
I've started building a new plugin for Adobe XD, but for some reason, I can't see it in the plugin menu, even after several reloads.
I'm pretty sure I structured the folder correctly and I'm building in the correct develop folder...
plugins adobe-xd
plugins adobe-xd
asked Nov 9 at 20:22
Erin Finnegan
1935
1935
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
Plugin location
Make sure your plugin is in XD's develop folder. You can find that folder here:
- macOS:
~/Library/Application Support/Adobe/Adobe XD CC/
- Windows:
C:Users%USERNAME%AppDataLocalPackagesAdobe.CC.XD_adky2gkssdxteLocalState
The XD plugin API docs have more information on plugin location.
Manifest errors
Errors in the plugin manifest are the most likely culprit.
Here's an example of a manifest.json file:
"id": "YOUR_ID_HERE",
"name": "Name of Your Plugin",
"version": "0.0.1",
"description": "Description of your plugin.",
"icons": [
"width": 96, "height": 96, "path": "images/icon@2x.png"
],
"host":
"app": "XD",
"minVersion": "13.0.0"
,
"uiEntryPoints": [
"type": "menu",
"label": "Hello World",
"commandId": "helloCommand",
"shortcut": "mac": "Cmd+Shift+P", "win": "Ctrl+Shift+P"
]
Note that the icons and uiEntryPoints values are arrays of objects, not an objects.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
Plugin location
Make sure your plugin is in XD's develop folder. You can find that folder here:
- macOS:
~/Library/Application Support/Adobe/Adobe XD CC/
- Windows:
C:Users%USERNAME%AppDataLocalPackagesAdobe.CC.XD_adky2gkssdxteLocalState
The XD plugin API docs have more information on plugin location.
Manifest errors
Errors in the plugin manifest are the most likely culprit.
Here's an example of a manifest.json file:
"id": "YOUR_ID_HERE",
"name": "Name of Your Plugin",
"version": "0.0.1",
"description": "Description of your plugin.",
"icons": [
"width": 96, "height": 96, "path": "images/icon@2x.png"
],
"host":
"app": "XD",
"minVersion": "13.0.0"
,
"uiEntryPoints": [
"type": "menu",
"label": "Hello World",
"commandId": "helloCommand",
"shortcut": "mac": "Cmd+Shift+P", "win": "Ctrl+Shift+P"
]
Note that the icons and uiEntryPoints values are arrays of objects, not an objects.
add a comment |
up vote
3
down vote
accepted
Plugin location
Make sure your plugin is in XD's develop folder. You can find that folder here:
- macOS:
~/Library/Application Support/Adobe/Adobe XD CC/
- Windows:
C:Users%USERNAME%AppDataLocalPackagesAdobe.CC.XD_adky2gkssdxteLocalState
The XD plugin API docs have more information on plugin location.
Manifest errors
Errors in the plugin manifest are the most likely culprit.
Here's an example of a manifest.json file:
"id": "YOUR_ID_HERE",
"name": "Name of Your Plugin",
"version": "0.0.1",
"description": "Description of your plugin.",
"icons": [
"width": 96, "height": 96, "path": "images/icon@2x.png"
],
"host":
"app": "XD",
"minVersion": "13.0.0"
,
"uiEntryPoints": [
"type": "menu",
"label": "Hello World",
"commandId": "helloCommand",
"shortcut": "mac": "Cmd+Shift+P", "win": "Ctrl+Shift+P"
]
Note that the icons and uiEntryPoints values are arrays of objects, not an objects.
add a comment |
up vote
3
down vote
accepted
up vote
3
down vote
accepted
Plugin location
Make sure your plugin is in XD's develop folder. You can find that folder here:
- macOS:
~/Library/Application Support/Adobe/Adobe XD CC/
- Windows:
C:Users%USERNAME%AppDataLocalPackagesAdobe.CC.XD_adky2gkssdxteLocalState
The XD plugin API docs have more information on plugin location.
Manifest errors
Errors in the plugin manifest are the most likely culprit.
Here's an example of a manifest.json file:
"id": "YOUR_ID_HERE",
"name": "Name of Your Plugin",
"version": "0.0.1",
"description": "Description of your plugin.",
"icons": [
"width": 96, "height": 96, "path": "images/icon@2x.png"
],
"host":
"app": "XD",
"minVersion": "13.0.0"
,
"uiEntryPoints": [
"type": "menu",
"label": "Hello World",
"commandId": "helloCommand",
"shortcut": "mac": "Cmd+Shift+P", "win": "Ctrl+Shift+P"
]
Note that the icons and uiEntryPoints values are arrays of objects, not an objects.
Plugin location
Make sure your plugin is in XD's develop folder. You can find that folder here:
- macOS:
~/Library/Application Support/Adobe/Adobe XD CC/
- Windows:
C:Users%USERNAME%AppDataLocalPackagesAdobe.CC.XD_adky2gkssdxteLocalState
The XD plugin API docs have more information on plugin location.
Manifest errors
Errors in the plugin manifest are the most likely culprit.
Here's an example of a manifest.json file:
"id": "YOUR_ID_HERE",
"name": "Name of Your Plugin",
"version": "0.0.1",
"description": "Description of your plugin.",
"icons": [
"width": 96, "height": 96, "path": "images/icon@2x.png"
],
"host":
"app": "XD",
"minVersion": "13.0.0"
,
"uiEntryPoints": [
"type": "menu",
"label": "Hello World",
"commandId": "helloCommand",
"shortcut": "mac": "Cmd+Shift+P", "win": "Ctrl+Shift+P"
]
Note that the icons and uiEntryPoints values are arrays of objects, not an objects.
answered Nov 9 at 20:50
Ash Ryan Arnwine
1,2091724
1,2091724
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53232804%2fmy-adobe-xd-plugin-isnt-showing-up-in-the-plugin-menu%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown