Files
webextensions-examples/borderify/manifest.json
2016-01-13 21:03:33 -08:00

27 lines
603 B
JSON

{
"description": "Adds a solid red border to all webpages matching mozilla.org. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#borderify",
"manifest_version": 2,
"name": "Borderify",
"version": "1.0",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/borderify",
"icons": {
"32": "icons/border-32.png",
"64": "icons/border-64.png"
},
"applications": {
"gecko": {
"id": "borderify@mozilla.org"
}
},
"content_scripts": [
{
"matches": ["*://*.mozilla.org/*"],
"js": ["borderify.js"]
}
]
}