Inspect and view changes in Color Picker 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": 3,
"name": "Color Picker",
"description": "Offers a range of tools to enhance your color selection and design workflow",
"version": "3.9.8.644",
"action": {
"default_popup": "index.html",
"default_title": "Color by Fardos"
},
"icons": {
"16": "logos/logo.png",
"128": "logos/logo.png"
},
"commands": {
"toggle-feature-foo": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Pick colors from site"
}
},
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; media-src *;"
},
"permissions": [
"storage",
"activeTab",
"cookies",
"tabs",
"scripting"
],
"host_permissions": [
"https://*/*",
"*://*/*"
],
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https://*/*"
],
"js": [
"./services/eyedropper/index.js",
"./services/search/index.js"
],
"css": [
"./services/eyedropper/index.css"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}