Hue: More Colors for Google Calendar

Hue: More Colors for Google Calendar

A Chrome extension designed to enhance and personalize your Google Calendar experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hue: More Colors for Google Calendar",
  "version": "1.0.4",
  "description": "A Chrome extension designed to enhance and personalize your Google Calendar experience.",
  "host_permissions": [
    "https://calendar.google.com/*",
    "http://calendar.google.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "colour.js",
        "selector.js"
      ],
      "matches": [
        "https://calendar.google.com/*",
        "http://calendar.google.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon.png",
        "trash16.png"
      ],
      "matches": [
        "https://calendar.google.com/*",
        "http://calendar.google.com/*"
      ]
    }
  ]
}