Color Picker Tool - Geco

Color Picker Tool - Geco

Grab colors from web pages, color picker, color history. Compared to Color picker, color pick, eyedropper, colorzilla this better.

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.0.7",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "permissions": [
    "activeTab",
    "notifications",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "19": "icons/icon_19.png",
    "38": "icons/icon_38.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_icon": {
      "19": "icons/icon_19.png",
      "38": "icons/icon_38.png",
      "48": "icons/icon_48.png",
      "128": "icons/icon_128.png"
    },
    "default_title": "Color Picker",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "commands": {
    "run-picker": {
      "suggested_key": {
        "default": "Alt+R",
        "mac": "Alt+R"
      },
      "description": "Activate pick color from web page."
    }
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "js/content.js"
      ],
      "css": [
        "scss/content.scss"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}