Calendar Color Labels

Add configurable labels to Google Calendar event colors

Co je Calendar Color Labels?

Calendar Color Labels je rozšíření Chrome vyvinuté oneself, a jeho hlavní funkcí je „Add configurable labels to Google Calendar event colors“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Calendar Color Labels

Stáhněte si soubory rozšíření Calendar Color Labels ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Google Calendar offers the ability to color events on the a calendar.  However, it is often hard to remember which color is used for which events type.  This extension adds a configurable set of labels that can be used to add meaning to event colors.  The label will be displayed as a hint when you hover over the color when setting it. You can also set the color names themselves with is useful for using Google Calendar with languages other than English (which is the default).                    

Základní Informace o Rozšíření

Název Calendar Color Labels Calendar Color Labels
ID nhbijjgmjdfoppaoogknapfokimbgjbp
Oficiální URL https://chromewebstore.google.com/detail/calendar-color-labels/nhbijjgmjdfoppaoogknapfokimbgjbp
Popis Add configurable labels to Google Calendar event colors
Velikost souboru 31.34 KB
Počet instalací 4,325
Aktuální Verze 1.0
Poslední Aktualizace 2022-05-24
Datum Vydání 2021-02-23
Hodnocení 2.77/5 Celkem 26 Hodnocení
Vývojář oneself
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/oneself/calendarcolorlabels
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Calendar Color Labels",
    "description": "Add configurable labels to Google Calendar event colors",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/calendar.google.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "shared.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/calendartaglabels16.png",
        "32": "\/images\/calendartaglabels32.png",
        "48": "\/images\/calendartaglabels48.png",
        "128": "\/images\/calendartaglabels128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/calendartaglabels16.png",
            "32": "\/images\/calendartaglabels32.png",
            "48": "\/images\/calendartaglabels48.png",
            "128": "\/images\/calendartaglabels128.png"
        }
    }
}