Skip to content

Instantly share code, notes, and snippets.

@UskeS
Created September 5, 2023 00:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UskeS/2f687ae2e31b63881902cd02e1825b89 to your computer and use it in GitHub Desktop.
Save UskeS/2f687ae2e31b63881902cd02e1825b89 to your computer and use it in GitHub Desktop.
InDesign UXP Plugin manifest
{
"id": "your_plugin_id",
"name": "your_plugin_name",
"version": "1.0.0",
"main": "index.html",
"host": [
{
"app": "ID",
"minVersion": "18.5.0"
}
],
"manifestVersion": 5,
"entrypoints": [
{
"type": "command",
"id": "showAlert",
"label": "Show alert"
},
{
"type": "panel",
"id": "showPanel",
"minimumSize": {
"width": 230,
"height": 200
},
"maximumSize": {
"width": 2000,
"height": 2000
},
"preferredDockedSize": {
"width": 300,
"height": 300
},
"preferredFloatingSize": {
"width": 300,
"height": 300
},
"label": {
"default": "Show panel"
},
"icons": [
{
"width": 23,
"height": 23,
"path": "icons/dark.png",
"scale": [
1,
2
],
"theme": [
"darkest",
"dark",
"medium"
]
},
{
"width": 23,
"height": 23,
"path": "icons/light.png",
"scale": [
1,
2
],
"theme": [
"lightest",
"light"
]
}
]
}
],
"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