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.

Hvad er Google Calendar: Add AND remove calendars?

Google Calendar: Add AND remove calendars er en Chrome-udvidelse udviklet af Seth Walker, og dens hovedfunktion er "Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.".

Download Google Calendar: Add AND remove calendars-udvidelses-CRX-fil

Download Google Calendar: Add AND remove calendars-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Google Calendar: Add AND remove calendars Google Calendar: Add AND remove calendars
ID dooidmblcmickgannljbomjfccagbhlh
Officiel URL https://chrome.google.com/webstore/detail/google-calendar-add-and-r/dooidmblcmickgannljbomjfccagbhlh
Beskrivelse Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.
Filstørrelse 194 KB
Antal Installationer 33
Nuværende Version 0.1
Senest Opdateret 2014-10-28
Udgivelsesdato 2014-10-28
Udvikler Seth Walker
Betalingsmetode free
Understøttede Sprog 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
}