mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-18 15:28:37 +02:00
34 lines
659 B
JSON
34 lines
659 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "__MSG_extensionName__",
|
|
"description": "__MSG_extensionDescription__",
|
|
"version": "1.0",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/notify-link-clicks-i18n",
|
|
"icons": {
|
|
"48": "icons/link-48.png"
|
|
},
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "notify-link-clicks-i18n@mozilla.org",
|
|
"strict_min_version": "46.0a1"
|
|
}
|
|
},
|
|
|
|
"permissions": ["notifications"],
|
|
|
|
"background": {
|
|
"scripts": ["background-script.js"]
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content-script.js"]
|
|
}
|
|
],
|
|
|
|
"default_locale": "en"
|
|
}
|