Color Picker - Eyedropper

Color Picker - Eyedropper

Pick color of any pixel on the screen with the EyeDropper tool. Color values automagically available as RGB, HSL, HEX.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.2.2",
  "action": {
    "default_popup": "src/layouts/popup.html",
    "default_icon": "icons/icon-128_x_128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "src/js/contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "src/js/serviceWorker.js",
    "type": "module"
  },
  "icons": {
    "16": "icons/icon-16_x_16.png",
    "32": "icons/icon-32_x_32.png",
    "64": "icons/icon-64_x_64.png",
    "128": "icons/icon-128_x_128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}