DraftToCalendar

Taking classes from DraftMySchedule and adding them to a user's Google calendar

Cos'è DraftToCalendar?

DraftToCalendar è un'estensione di Chrome sviluppata da David George, e la sua funzione principale è "Taking classes from DraftMySchedule and adding them to a user's Google calendar".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione DraftToCalendar

Scarica i file di estensione DraftToCalendar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        DraftToCalendar is a google chrome extension which will take a Western University DraftMySchedule course timetable and will add it to a user's google calendar. This is much easier then having to manually create a google calendar for the entire year manually. All it takes is one button click and your entire schedule will be automatically added. Simple as that.                    

Informazioni di Base sull'Estensione

Nome DraftToCalendar DraftToCalendar
ID khkodfcgkhljepkpapocoaojdnkbbfhc
URL Ufficiale https://chromewebstore.google.com/detail/drafttocalendar/khkodfcgkhljepkpapocoaojdnkbbfhc
Descrizione Taking classes from DraftMySchedule and adding them to a user's Google calendar
Dimensione del File 67.89 KB
Conteggio Installazioni 209
Versione Corrente 0.1.4
Ultimo Aggiornamento 2022-09-08
Data di Pubblicazione 2021-08-30
Valutazione 5.00/5 Totale 11 Valutazioni
Sviluppatore David George
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DraftToCalendar",
    "description": "Taking classes from DraftMySchedule and adding them to a user's Google calendar",
    "version": "0.1.4",
    "manifest_version": 3,
    "oauth2": {
        "client_id": "865090149920-e0do53oficdm2hk97gnravkq5q7hgh5r.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar"
        ]
    },
    "icons": {
        "16": ".\/calendar-icon.png",
        "48": ".\/calendar-icon.png",
        "128": ".\/calendar-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/draftmyschedule.uwo.ca\/*"
            ],
            "js": [
                "script1.js",
                "script2.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_title": "DraftToCalendar",
        "default_popup": ".\/index.html"
    },
    "permissions": [
        "identity",
        "activeTab"
    ]
}