Smart Color Picker

Smart Color Picker

Smartest color picker tool for your browser. HEX, RGB, HSL colors, eyedropper tool, web site palette.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Smart color picker",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png",
      "300": "icons/icon300.png"
    },
    "default_title": "__MSG_badgeAvailable__",
    "default_popup": "html/popup.html"
  },
  "default_locale": "en",
  "description": "__MSG_extShortDesc__",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png",
    "300": "icons/icon300.png"
  },
  "incognito": "split",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "permissions": [
    "storage",
    "commands",
    "scripting",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "activate": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "__MSG_shortcutCommand__"
    }
  },
  "version": "1.6.6",
  "web_accessible_resources": [
    {
      "resources": [
        "/web_accessible_resources/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}