Inspect and view changes in style customizer source codes across current and past versions
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",
"manifest_version": 3,
"name": "style customizer",
"version": "0.1.2",
"description": "You can customize the style of any website",
"permissions": [
"activeTab",
"storage"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [],
"action": {
"default_popup": "popup/index.html",
"default_title": "",
"default_icon": {
"16": "assets/icon16.png",
"32": "assets/icon32.png",
"48": "assets/icon48.png",
"64": "assets/icon64.png",
"128": "assets/icon128.png",
"256": "assets/icon256.png"
}
},
"icons": {
"16": "assets/icon16.png",
"32": "assets/icon32.png",
"48": "assets/icon48.png",
"64": "assets/icon64.png",
"128": "assets/icon128.png",
"256": "assets/icon256.png"
},
"options_page": "options/index.html",
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
]
}