DraftToCalendar

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

Was ist DraftToCalendar?

DraftToCalendar ist eine Chrome-Erweiterung, die von David George entwickelt wurde, und ihr Hauptmerkmal ist "Taking classes from DraftMySchedule and adding them to a user's Google calendar".

Erweiterungsscreenshots

screenshot

DraftToCalendar-Erweiterungs-CRX-Datei herunterladen

Laden Sie DraftToCalendar-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name DraftToCalendar DraftToCalendar
ID khkodfcgkhljepkpapocoaojdnkbbfhc
Offizielle URL https://chromewebstore.google.com/detail/drafttocalendar/khkodfcgkhljepkpapocoaojdnkbbfhc
Beschreibung Taking classes from DraftMySchedule and adding them to a user's Google calendar
Dateigröße 67.89 KB
Installationsanzahl 209
Aktuelle Version 0.1.4
Letztes Update 2022-09-08
Veröffentlichungsdatum 2021-08-30
Bewertung 5.00/5 Insgesamt 11 Bewertungen
Entwickler David George
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}