Hue: More Colors for Google Calendar

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

Was ist Hue: More Colors for Google Calendar?

Hue: More Colors for Google Calendar ist eine Chrome-Erweiterung, die von bryanhuangg entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension designed to enhance and personalize your Google Calendar experience.".

Erweiterungsscreenshots

screenshot
screenshot

Hue: More Colors for Google Calendar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hue: More Colors for Google Calendar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Currently allows you to have full control of the colors on your Google Calendar events. Add new colors to your palette in the extensions popup menu to see more color options in your calendar! More features to come.


Patch Notes:

Version 1.0.2 (2/2/2024)
Fixed issue where event colors do not change properly due to google calendar update.                    

Grundlegende Informationen zur Erweiterung

Name Hue: More Colors for Google Calendar Hue: More Colors for Google Calendar
ID gglmljnnfgfkajefpbgjaeobelpokhbn
Offizielle URL https://chromewebstore.google.com/detail/hue-more-colors-for-googl/gglmljnnfgfkajefpbgjaeobelpokhbn
Beschreibung A Chrome extension designed to enhance and personalize your Google Calendar experience.
Dateigröße 205 KB
Installationsanzahl 566
Aktuelle Version 1.0.2
Letztes Update 2024-02-15
Veröffentlichungsdatum 2023-11-12
Bewertung 3.38/5 Insgesamt 13 Bewertungen
Entwickler bryanhuangg
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/bryanhuangg/gcal-hue/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hue: More Colors for Google Calendar",
    "version": "1.0.2",
    "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\/*"
            ]
        }
    ]
}