Google Calendar: Add AND remove calendars

Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.

Was ist Google Calendar: Add AND remove calendars?

Google Calendar: Add AND remove calendars ist eine Chrome-Erweiterung, die von Seth Walker entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.".

Google Calendar: Add AND remove calendars-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Calendar: Add AND remove calendars-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

                        Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.

It also sorts coworkers calendars to put active calendars at the top.                    

Grundlegende Informationen zur Erweiterung

Name Google Calendar: Add AND remove calendars Google Calendar: Add AND remove calendars
ID dooidmblcmickgannljbomjfccagbhlh
Offizielle URL https://chrome.google.com/webstore/detail/google-calendar-add-and-r/dooidmblcmickgannljbomjfccagbhlh
Beschreibung Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.
Dateigröße 194 KB
Installationsanzahl 33
Aktuelle Version 0.1
Letztes Update 2014-10-28
Veröffentlichungsdatum 2014-10-28
Entwickler Seth Walker
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Calendar: Add AND remove calendars",
    "description": "Chrome extension to turn the \"Add a coworker's calendar\" field in Google Calendar into a toggle for adding AND removing calendars.",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/calendar\/*",
                "http:\/\/www.google.com\/calendar\/*"
            ],
            "js": [
                "node_modules\/email-addresses\/lib\/email-addresses.js",
                "node_modules\/underscore\/underscore.js",
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.google.com\/calendar\/*"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2
}