mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
31 lines
708 B
JSON
31 lines
708 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",
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "commands-demo@mozilla.org",
|
|
"strict_min_version": "60.0b5"
|
|
}
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"commands": {
|
|
"toggle-feature": {
|
|
"suggested_key": { "default": "Ctrl+Shift+U" },
|
|
"description": "Send a 'toggle-feature' event to the extension"
|
|
}
|
|
},
|
|
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"browser_style": true
|
|
}
|
|
}
|