Change the color of any webpage. Color Appears Where there are no elements
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Background Color Changer",
"version": "1.0",
"description": "Change the color of any webpage. Color Appears Where there are no elements",
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
"options_page": "option.html",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/favicon-16x16.png",
"32": "images/favicon-32x32.png",
"48": "images/really.ico",
"128": "images/more.ico"
}
},
"icons": {
"16": "images/favicon-16x16.png",
"32": "images/favicon-32x32.png",
"48": "images/really.ico",
"128": "images/more.ico"
},
"manifest_version": 2
}