What Color is This

What Color is This

Simplify color selection with "What color is this" intuitive hex color picker, uncovering hex codes effortlessly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_shortDesc__",
  "default_locale": "en",
  "manifest_version": 3,
  "version": "1.1.1",
  "action": {
    "default_title": "What Color is This",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "popup.js"
      ],
      "type": "module"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "type": "module"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}