mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-21 16:52:50 +02:00
31 lines
693 B
JSON
31 lines
693 B
JSON
{
|
|
|
|
"description": "Displays notifications when the user clicks links. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#notify-link-clicks",
|
|
"manifest_version": 2,
|
|
"name": "Notify link clicks",
|
|
"version": "1.0",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/notify-link-clicks",
|
|
"icons": {
|
|
"48": "icons/link-48.png"
|
|
},
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "notify-link-clicks@mozilla.org"
|
|
}
|
|
},
|
|
|
|
"permissions": ["notifications"],
|
|
|
|
"background": {
|
|
"scripts": ["background-script.js"]
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content-script.js"]
|
|
}
|
|
]
|
|
}
|