A collection of resources from Adobe for XD extension
- XD Github Repo External
- XD Prerelease Forum Discussion
- XD Gitbook space
- XD Gitbook Guide/Getting Started
- XD API Reference
To add multiple options on plugin (UI Entry Points) add to uiEntryPoints
on manifest.json
file. Example:
"uiEntryPoints": [
{
"type": "menu",
"label": "Fit It (Demo)",
"menuItems": [
{
"type": "menu",
"label": "Fit It As Is",
"commandId": "fitItem"
},
{
"type": "menu",
"label": "Fit It Clockwise",
"commandId": "rotatateClockFitItem"
},
{
"type": "menu",
"label": "Fit It Counter-clockwise",
"commandId": "rotateCounterClockFitItem"
}
]
}
]