first cut of content-scripts

This commit is contained in:
Will Bamberg
2015-09-14 16:01:48 -07:00
parent 88f703edd6
commit b8fbbff171
2 changed files with 48 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"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"]
}
]
}