mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-24 18:22:54 +02:00
25 lines
393 B
JSON
25 lines
393 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "Content scripting",
|
|
"version": "1.0",
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "notify-link-clicks@mozilla.org"
|
|
}
|
|
},
|
|
|
|
"permissions": ["notifications"],
|
|
|
|
"background": {
|
|
"scripts": ["background-script.js"]
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.mozilla.org/*"],
|
|
"js": ["content-script.js"]
|
|
}
|
|
]
|
|
}
|