Examine source code of Gmail Label Colorizer

Inspect and view changes in Gmail Label Colorizer 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
{
  "name": "Gmail Label Colorizer",
  "description": "A simplified way to change Gmail labels to any color you want.",
  "version": "1.1.1",
  "manifest_version": 3,
  "author": "pjpscriv",
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/mail*"
      ],
      "js": [
        "res/coloris.min.js",
        "content.js"
      ],
      "css": [
        "res/coloris.min.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*.google.com/mail*"
  ],
  "icons": {
    "16": "/icons/icon_16.png",
    "48": "/icons/icon_48.png",
    "128": "/icons/icon_128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "gmail-label-colorizer@pjpscriv.com",
      "strict_min_version": "109.0"
    }
  }
}