Files
webextensions-examples/commands/manifest.json
T
Mindaugas Jakutis dc4b7fe4ea switch to using Ctrl+Shift+U in commands example
seems to be assigned to download manager (at least on linux)
2016-05-02 13:30:03 +03:00

23 lines
605 B
JSON

{
"name": "Sample Commands Extension",
"description": "Press Ctrl+Shift+U to send an event (Command+Shift+U on a Mac).",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/commands",
"manifest_version": 2,
"version": "1.0",
"strict_min_version": "48.0a1",
"background": {
"scripts": ["background.js"]
},
"applications": {
"gecko": {
"id": "commands@mozilla.org"
}
},
"commands": {
"toggle-feature": {
"suggested_key": { "default": "Ctrl+Shift+U" },
"description": "Send a 'toggle-feature' event to the extension"
}
}
}