Created
May 22, 2021 07:57
-
-
Save PragatiVerma18/7e1f9bbf3087b6aa5e8193459ab65d47 to your computer and use it in GitHub Desktop.
VueJS Starter Plugin for Adobe Photoshop - manifest.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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