Web Color Picker - online color grabber

Web Color Picker - online color grabber

Grab colors from web pages. Color picker, color history. Live smart color picker tool in HEX, RGBA. Eyedropper colorpick for free

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_extName__",
  "version": "1.2",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "icons": {
    "19": "img/img19.png",
    "38": "img/img38.png",
    "48": "img/img48.png",
    "128": "img/img128.png"
  },
  "action": {
    "default_icon": {
      "19": "img/img19.png",
      "38": "img/img38.png",
      "48": "img/img48.png",
      "128": "img/img128.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "commands": {
    "run-picker": {
      "suggested_key": {
        "default": "Alt+R",
        "mac": "Alt+R"
      },
      "description": "Activate pick color from web page."
    },
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+R",
        "mac": "Alt+R",
        "chromeos": "Alt+R",
        "linux": "Alt+R"
      }
    }
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "notifications",
    "storage",
    "webRequest",
    "contextMenus",
    "commands"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}