mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-21 16:52:50 +02:00
26 lines
432 B
JSON
26 lines
432 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "Content scripting",
|
|
"version": "1.0",
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "content-scripts@mozilla.org"
|
|
}
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://mdn.github.io/webextensions-examples/"],
|
|
"js": ["content-script.js"]
|
|
}
|
|
],
|
|
|
|
"browser_action": {
|
|
"default_icon": "button/action.png",
|
|
"default_popup": "popup/choose_action.html"
|
|
}
|
|
|
|
}
|