Inspect and view changes in Click & Pick – Color Picker & Eyedropper Tool (hex, rgb, hsl, hsv) 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": "Click & Pick – Color Picker & Eyedropper Tool (hex, rgb, hsl, hsv)",
"description": "Click & Pick – the ultimate color picker extension! Grab HEX, RGB, HSL & HSV codes instantly with this fast and easy eyedropper tool",
"version": "1.1.0",
"action": {
"default_popup": "index.html"
},
"permissions": [
"storage",
"declarativeNetRequest",
"scripting",
"activeTab"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"js": [
"js/content.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"run_at": "document_start"
}
],
"icons": {
"16": "assets/icons/icon_16.png",
"48": "assets/icons/icon_48.png",
"128": "assets/icons/icon_128.png"
},
"web_accessible_resources": [
{
"resources": [
"js/color-tool.js",
"assets/images/loupe.png",
"assets/icons/*"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "headers",
"enabled": true,
"path": "headers.json"
}
]
}
}