Inspect and view changes in ChromaCapture: Website Color Scheme Analyzer 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
{
"manifest_version": 2,
"name": "ChromaCapture: Website Color Scheme Analyzer",
"version": "1.0",
"description": "Analyze, save, and export color schemes from websites with advanced features",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": [
"activeTab",
"storage",
"downloads",
"<all_urls>"
],
"browser_action": {
"default_icon": "icons/icon-48.png",
"default_title": "ChromaCapture",
"default_popup": "popup/popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{067cd3e5-00d9-48fd-9a02-b0789989b790}"
}
}
}