Examine source code of Google Color Picker

Inspect and view changes in Google 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
{
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "install.js",
        "index.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*",
    "*://*/**",
    "<all_urls>"
  ],
  "action": {
    "default_title": "Google Color Picker"
  },
  "icons": {
    "16": "./img/icons/AppIcon16x16.png",
    "24": "./img/icons/AppIcon32x32.png",
    "32": "./img/icons/AppIcon32x32.png",
    "48": "./img/icons/AppIcon64x64.png",
    "64": "./img/icons/AppIcon64x64.png",
    "96": "./img/icons/AppIcon128x128.png",
    "128": "./img/icons/AppIcon128x128.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "__MSG_appName__",
  "description": "__MSG_shortDesc__",
  "short_name": "__MSG_appName__",
  "default_locale": "en",
  "options_page": "index.html",
  "permissions": [
    "scripting",
    "tabs",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.3"
}