Better Color Picker

Better Color Picker

Better Color Picker is a user-oriented Chrome extension that allows you to easily pick colors from any web page. It aims to offer…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Better Color Picker",
  "version": "1.0.1",
  "action": {
    "default_popup": "index.html",
    "default_icon": "assets/icons/icon_128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "notifications"
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "icons": {
    "16": "assets/icons/icon_16.png",
    "48": "assets/icons/icon_48.png",
    "128": "assets/icons/icon_128.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/main.tsx-loader.9fd5ebd5.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "assets/main.5cc83f18.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/fonts/inter.ttf",
        "assets/icons/icon_128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/storage.a452a4ac.js",
        "assets/main.tsx.48b44f2c.js"
      ],
      "use_dynamic_url": true
    }
  ]
}