This extension extract colors from elements on the page in hex and rgb.
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": 2,
"author": "Linus Larsson",
"name": "Color Extraction by Qvalento",
"description": "This extension extract colors from elements on the page in hex and rgb.",
"version": "3.0",
"permissions": [
"activeTab",
"clipboardWrite"
],
"icons": {
"16": "color_extraction_logo_16.png",
"48": "color_extraction_logo_48.png",
"128": "color_extraction_logo_128.png"
},
"browser_action": {
"default_icon": "color_extraction_logo_48.png",
"default_popup": "popup.html"
}
}