DraftToCalendar

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

Qu'est-ce que DraftToCalendar ?

DraftToCalendar est une extension Chrome développée par David George, et sa fonction principale est "Taking classes from DraftMySchedule and adding them to a user's Google calendar".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension DraftToCalendar

Téléchargez les fichiers d'extension DraftToCalendar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom DraftToCalendar DraftToCalendar
ID khkodfcgkhljepkpapocoaojdnkbbfhc
URL Officiel https://chromewebstore.google.com/detail/drafttocalendar/khkodfcgkhljepkpapocoaojdnkbbfhc
Description Taking classes from DraftMySchedule and adding them to a user's Google calendar
Taille du Fichier 67.89 KB
Nombre d'Installations 209
Version Actuelle 0.1.4
Dernière Mise à Jour 2022-09-08
Date de Publication 2021-08-30
Évaluation 5.00/5 Total 11 Évaluations
Développeur David George
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}