added first version of super-simple example

This commit is contained in:
Will Bamberg
2015-08-14 13:22:35 -07:00
parent 872e360fdf
commit 44b09d0f41
2 changed files with 21 additions and 0 deletions

1
borderify/borderify.js Normal file
View File

@@ -0,0 +1 @@
document.body.style.border = "5px solid red";

20
borderify/manifest.json Normal file
View File

@@ -0,0 +1,20 @@
{
"manifest_version": 2,
"name": "Borderify",
"version": "1.0",
"applications": {
"gecko": {
"id": "borderify@mozilla.org"
}
},
"content_scripts": [
{
"matches": ["*://*.mozilla.org/*"],
"js": ["borderify.js"]
}
]
}