颜色拾取器

Make color extraction fast and simple to go.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "颜色拾取器",
  "description": "Make color extraction fast and simple to go.",
  "version": "0.0.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "./Popup.html"
  },
  "icons": {
    "16": "icons/colors16.png",
    "32": "icons/colors32.png",
    "48": "icons/colors48.png",
    "64": "icons/colors64.png",
    "128": "icons/colors128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./contentScript.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}