Skip to content

Instantly share code, notes, and snippets.

@PragatiVerma18
Created May 22, 2021 07:57
Show Gist options
  • Save PragatiVerma18/7e1f9bbf3087b6aa5e8193459ab65d47 to your computer and use it in GitHub Desktop.
Save PragatiVerma18/7e1f9bbf3087b6aa5e8193459ab65d47 to your computer and use it in GitHub Desktop.
VueJS Starter Plugin for Adobe Photoshop - manifest.json
{
"id": "com.adobe.uxp.starter.vue",
"name": "UXP Vue Starter Plugin",
"version": "1.0.0",
"main": "index.html",
"manifestVersion": 4,
"host": {
"app": "PS",
"minVersion": "22.0.0"
},
"entrypoints": [
{
"type": "panel",
"id": "helloworld",
"label": {
"default": "Hello World"
},
"minimumSize": { "width": 230, "height": 200 },
"maximumSize": { "width": 2000, "height": 2000 },
"preferredDockedSize": { "width": 230, "height": 300 },
"preferredFloatingSize": { "width": 230, "height": 300 },
"icons": [
{
"width": 23,
"height": 23,
"path": "icons/dark-panel.png",
"scale": [1, 2],
"theme": ["darkest", "dark", "medium"],
"species": ["chrome"]
},
{
"width": 23,
"height": 23,
"path": "icons/light-panel.png",
"scale": [1, 2],
"theme": ["lightest", "light"],
"species": ["chrome"]
}
]
}
],
"icons": [
{
"width": 48,
"height": 48,
"path": "icons/plugin.png",
"scale": [1, 2],
"theme": ["darkest", "dark", "medium", "lightest", "light", "all"],
"species": ["pluginList"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment