Created
January 15, 2019 00:32
-
-
Save natebass/bb5b8851d9d9b00308694903b0241856 to your computer and use it in GitHub Desktop.
Minimal web extension manifest https://github.com/mdn/webextensions-examples/tree/master/borderify
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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": { | |
| "48": "icons/border-48.png" | |
| }, | |
| "content_scripts": [ | |
| { | |
| "matches": ["*://*.mozilla.org/*"], | |
| "js": ["borderify.js"] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment