Eyedropper - Color picker

Pick a color on the current page

What is Eyedropper - Color picker?

Eyedropper - Color picker is a Chrome extension developed by roumi, and its main feature is "Pick a color on the current page".

Extension Screenshots

screenshot

Download Eyedropper - Color picker Extension CRX File

Download Eyedropper - Color picker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension allows you to pick a color on the current tab.                    

Extension Basic Information

Name Eyedropper - Color picker Eyedropper - Color picker
ID lffepicekmmcedjmmgdeaedjcccoddln
Official URL https://chromewebstore.google.com/detail/eyedropper-color-picker/lffepicekmmcedjmmgdeaedjcccoddln
Description Pick a color on the current page
File Size 9.58 KB
Installation Count 457
Current Version 2.0
Last Updated 2024-01-29
Publish Date 2020-11-26
Developer roumi
Email [email protected]
Payment Type free
Extension Website https://github.com/Remi-Leclercq-Blondel/eyedropper
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Eyedropper - Color picker",
    "version": "2.0",
    "description": "Pick a color on the current page",
    "background": {
        "service_worker": "src\/background\/background.js"
    },
    "action": {
        "default_popup": "src\/popup\/index.html",
        "default_icon": "images\/logo.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content\/eyedrop.js"
            ],
            "css": [
                "src\/content\/style.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo.png",
        "32": "images\/logo.png",
        "128": "images\/logo.png"
    },
    "manifest_version": 3
}