mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 14:59:12 +02:00
31 lines
645 B
JSON
31 lines
645 B
JSON
{
|
|
"name": "SDK Addon Name",
|
|
"version": "0.3.0",
|
|
"manifest_version": 2,
|
|
"permissions": ["storage", "notifications"],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.mozilla.org/*"],
|
|
"js": ["content-script.js"]
|
|
}
|
|
],
|
|
"options_ui": {
|
|
"page": "options.html"
|
|
},
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_icon": "icons/icon-32.png",
|
|
"default_title": "button label",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "original-sdk-addon-id@mozilla.com",
|
|
"strict_min_version": "51.0a1"
|
|
}
|
|
}
|
|
}
|