Files
webextensions-examples/content-scripts/manifest.json
T
Will Bamberg 11fe52f05a extension work
2015-09-14 16:49:43 -07:00

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