Easy Color Picker

Easy Color Picker

Grab colors from webpages anytime, instant color picker and personal color history.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Easy Color Picker",
  "description": "Grab colors from webpages anytime, instant color picker and personal color history.",
  "version": "0.2.1",
  "action": {
    "default_icon": "images/logo.png",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "background": {
    "service_worker": "/js/background.js"
  },
  "commands": {
    "activate": {
      "description": "Activate picking color from web page",
      "suggested_key": {
        "default": "Alt+P"
      }
    }
  }
}