Color Picker

Color Picker

Offers a range of tools to enhance your color selection and design workflow

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Color Picker",
  "description": "Offers a range of tools to enhance your color selection and design workflow",
  "version": "3.9.8.644",
  "action": {
    "default_popup": "index.html",
    "default_title": "Color by Fardos"
  },
  "icons": {
    "16": "logos/logo.png",
    "128": "logos/logo.png"
  },
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Pick colors from site"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; media-src *;"
  },
  "permissions": [
    "storage",
    "activeTab",
    "cookies",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*",
    "*://*/*"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "./services/eyedropper/index.js",
        "./services/search/index.js"
      ],
      "css": [
        "./services/eyedropper/index.css"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}