mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
27 lines
524 B
JSON
27 lines
524 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"
|
|
},
|
|
|
|
"permissions": ["notifications"],
|
|
|
|
"background": {
|
|
"scripts": ["background-script.js"]
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content-script.js"]
|
|
}
|
|
],
|
|
|
|
"default_locale": "en"
|
|
}
|