Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add "documentAccess": "dynamic-page" to manifest #323

Merged
merged 3 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,966 changes: 3,965 additions & 1 deletion dist/plugin.js

Large diffs are not rendered by default.

51,453 changes: 50,863 additions & 590 deletions dist/ui.html

Large diffs are not rendered by default.

51,453 changes: 50,863 additions & 590 deletions dist/ui.js

Large diffs are not rendered by default.

55 changes: 42 additions & 13 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,49 @@
"api": "1.0.0",
"main": "dist/plugin.js",
"ui": "dist/ui.html",
"editorType": ["figma"],
"editorType": [
"figma"
],
"networkAccess": {
"allowedDomains": ["*"],
"allowedDomains": [
"*"
],
"reasoning": "Wildcard is needed to use the plugin with companies' self-hosted CI instance"
},
"menu": [
{ "name": "Export Design Token File", "command": "export" },
{ "name": "Send Design Tokens to Url", "command": "urlExport" },
{ "separator": true },
{ "name": "Settings", "command": "generalSettings" },
{ "separator": true },
{ "name": "Help", "command": "help" },
{ "name": "Demo file", "command": "demo" },
{ "separator": true },
{ "name": "Reset Settings", "command": "reset" }
]
}
{
"name": "Export Design Token File",
"command": "export"
},
{
"name": "Send Design Tokens to Url",
"command": "urlExport"
},
{
"separator": true
},
{
"name": "Settings",
"command": "generalSettings"
},
{
"separator": true
},
{
"name": "Help",
"command": "help"
},
{
"name": "Demo file",
"command": "demo"
},
{
"separator": true
},
{
"name": "Reset Settings",
"command": "reset"
}
],
"documentAccess": "dynamic-page"
}
Loading
Loading