Calendar Color Labels

Add configurable labels to Google Calendar event colors

Was ist Calendar Color Labels?

Calendar Color Labels ist eine Chrome-Erweiterung, die von oneself entwickelt wurde, und ihr Hauptmerkmal ist "Add configurable labels to Google Calendar event colors".

Erweiterungsscreenshots

screenshot
screenshot

Calendar Color Labels-Erweiterungs-CRX-Datei herunterladen

Laden Sie Calendar Color Labels-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

                        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).                    

Grundlegende Informationen zur Erweiterung

Name Calendar Color Labels Calendar Color Labels
ID nhbijjgmjdfoppaoogknapfokimbgjbp
Offizielle URL https://chromewebstore.google.com/detail/calendar-color-labels/nhbijjgmjdfoppaoogknapfokimbgjbp
Beschreibung Add configurable labels to Google Calendar event colors
Dateigröße 31.34 KB
Installationsanzahl 4,325
Aktuelle Version 1.0
Letztes Update 2022-05-24
Veröffentlichungsdatum 2021-02-23
Bewertung 2.77/5 Insgesamt 26 Bewertungen
Entwickler oneself
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/oneself/calendarcolorlabels
Unterstützte Sprachen 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"
        }
    }
}