Files
webextensions-examples/borderify/manifest.json
2015-08-14 13:22:35 -07:00

21 lines
268 B
JSON

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