Eye Dropper X

Eye Dropper X

Get color from a page with color pick tool in a click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "version": "21",
  "manifest_version": 3,
  "icons": {
    "128": "icons/paint-icon.png"
  },
  "action": {},
  "background": {
    "service_worker": "src/bg/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/content/inject.css",
        "icons/art-and-design.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+C"
      }
    }
  }
}