DraftToCalendar

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

Apa itu DraftToCalendar?

DraftToCalendar adalah ekstensi Chrome yang dikembangkan oleh David George, dan fitur utamanya adalah "Taking classes from DraftMySchedule and adding them to a user's Google calendar".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi DraftToCalendar

Unduh file ekstensi DraftToCalendar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama DraftToCalendar DraftToCalendar
ID khkodfcgkhljepkpapocoaojdnkbbfhc
URL Resmi https://chromewebstore.google.com/detail/drafttocalendar/khkodfcgkhljepkpapocoaojdnkbbfhc
Deskripsi Taking classes from DraftMySchedule and adding them to a user's Google calendar
Ukuran File 67.89 KB
Jumlah Instalasi 209
Versi Saat Ini 0.1.4
Terakhir Diperbarui 2022-09-08
Tanggal Publikasi 2021-08-30
Penilaian 5.00/5 Total 11 Penilaian
Pengembang David George
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}