Files
webextensions-examples/notify-link-clicks-i18n/manifest.json
2016-02-19 13:32:59 -08:00

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"
}