Hue: More Colors for Google Calendar

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

Qu'est-ce que Hue: More Colors for Google Calendar ?

Hue: More Colors for Google Calendar est une extension Chrome développée par bryanhuangg, et sa fonction principale est "A Chrome extension designed to enhance and personalize your Google Calendar experience.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hue: More Colors for Google Calendar

Téléchargez les fichiers d'extension Hue: More Colors for Google Calendar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hue: More Colors for Google Calendar Hue: More Colors for Google Calendar
ID gglmljnnfgfkajefpbgjaeobelpokhbn
URL Officiel https://chromewebstore.google.com/detail/hue-more-colors-for-googl/gglmljnnfgfkajefpbgjaeobelpokhbn
Description A Chrome extension designed to enhance and personalize your Google Calendar experience.
Taille du Fichier 205 KB
Nombre d'Installations 566
Version Actuelle 1.0.2
Dernière Mise à Jour 2024-02-15
Date de Publication 2023-11-12
Évaluation 3.38/5 Total 13 Évaluations
Développeur bryanhuangg
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/bryanhuangg/gcal-hue/issues
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}