Google Calendar Color

Adds color to weekends in Google Calendar

Was ist Google Calendar Color?

Google Calendar Color ist eine Chrome-Erweiterung, die von Mai Nakagawa entwickelt wurde, und ihr Hauptmerkmal ist "Adds color to weekends in Google Calendar".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Google Calendar Color-Erweiterungs-CRX-Datei herunterladen

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

                        Colorizes weekends not only in Google Calendar but in Google Tasks. The source code is hosted at https://github.com/mai-nakagawa/google-calendar-color                    

Grundlegende Informationen zur Erweiterung

Name Google Calendar Color Google Calendar Color
ID dgpackgbkgdjgchmdodmaaildnpnbdph
Offizielle URL https://chrome.google.com/webstore/detail/google-calendar-color/dgpackgbkgdjgchmdodmaaildnpnbdph
Beschreibung Adds color to weekends in Google Calendar
Dateigröße 35.05 KB
Installationsanzahl 1,000
Aktuelle Version 1.2.0
Letztes Update 2016-10-03
Veröffentlichungsdatum 2016-10-03
Bewertung 1.20/5 Insgesamt 5 Bewertungen
Entwickler Mai Nakagawa
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Calendar Color",
    "description": "Adds color to weekends in Google Calendar",
    "version": "1.2.0",
    "browser_action": {
        "default_title": "Edit the color scheme",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "images\/calendar.png",
        "48": "images\/calendar.png",
        "128": "images\/calendar.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "webNavigation",
        "tabs",
        "storage",
        "https:\/\/calendar.google.com\/*",
        "https:\/\/mail.google.com\/*",
        "http:\/\/localhost\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}