Skip to content

Instantly share code, notes, and snippets.

@natebass
Created January 15, 2019 00:32
Show Gist options
  • Select an option

  • Save natebass/bb5b8851d9d9b00308694903b0241856 to your computer and use it in GitHub Desktop.

Select an option

Save natebass/bb5b8851d9d9b00308694903b0241856 to your computer and use it in GitHub Desktop.
{
"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