Examine source code of HueMore - Color Picker

Inspect and view changes in HueMore - Color Picker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "HueMore - Color Picker",
  "version": "1.0",
  "description": "A simple color picker for webpages. Pick and copy colors effortlessly. Supports HEX, RGB, HSL, CMYK.",
  "author": {
    "email": "cj.ceps@gmail.com"
  },
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}