Hue: More Colors for Google Calendar

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

Vad är Hue: More Colors for Google Calendar?

Hue: More Colors for Google Calendar är en Chrome-tillägg utvecklad av bryanhuangg, och dess huvudfunktion är "A Chrome extension designed to enhance and personalize your Google Calendar experience.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Hue: More Colors for Google Calendar-förlängningens CRX-fil

Ladda ner Hue: More Colors for Google Calendar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Hue: More Colors for Google Calendar Hue: More Colors for Google Calendar
ID gglmljnnfgfkajefpbgjaeobelpokhbn
Officiell webbadress https://chromewebstore.google.com/detail/hue-more-colors-for-googl/gglmljnnfgfkajefpbgjaeobelpokhbn
Beskrivning A Chrome extension designed to enhance and personalize your Google Calendar experience.
Filstorlek 205 KB
Antal Installationer 566
Aktuell Version 1.0.2
Senast Uppdaterad 2024-02-15
Publiceringsdatum 2023-11-12
Betyg 3.38/5 Totalt 13 Betyg
Utvecklare bryanhuangg
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/bryanhuangg/gcal-hue/issues
Stödda Språk 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\/*"
            ]
        }
    ]
}