mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
22 lines
351 B
JSON
22 lines
351 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "__MSG_extensionName__",
|
|
"description": "__MSG_extensionDescription__",
|
|
"version": "1.0",
|
|
"default_locale": "en",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"strict_min_version": "56.0a1"
|
|
}
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"permissions": [
|
|
"menus"
|
|
]
|
|
}
|