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.

Τι είναι το Google Calendar: Add AND remove calendars;

Το Google Calendar: Add AND remove calendars είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Seth Walker, και η κύρια λειτουργία του είναι "Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.".

Λήψη αρχείου CRX της επέκτασης Google Calendar: Add AND remove calendars

Λήψη αρχείων επέκτασης Google Calendar: Add AND remove calendars σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Calendar: Add AND remove calendars Google Calendar: Add AND remove calendars
ID dooidmblcmickgannljbomjfccagbhlh
Επίσημο URL https://chrome.google.com/webstore/detail/google-calendar-add-and-r/dooidmblcmickgannljbomjfccagbhlh
Περιγραφή Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.
Μέγεθος Αρχείου 194 KB
Αριθμός Εγκαταστάσεων 33
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2014-10-28
Ημερομηνία Δημοσίευσης 2014-10-28
Προγραμματιστής Seth Walker
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
}