Add your own custom CSS styles to any webpage
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Adds a browser action to toggle applying CSS to pages.",
"manifest_version": 2,
"name": "CSS Override",
"version": "1.0",
"homepage_url": "https://github.com/swcolegrove/css-override-web-extension",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"16": "icons/css16.png",
"48": "icons/css48.png",
"96": "icons/css96.png"
},
"browser_style": true,
"default_popup": "popup/menu.html"
},
"permissions": [
"activeTab",
"tabs",
"storage",
"<all_urls>"
],
"icons": {
"48": "icons/css48.png",
"96": "icons/css96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}