Get class schedule from webreg

This extension will download the class schedule in ics format.

Apa itu Get class schedule from webreg?

Get class schedule from webreg adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension will download the class schedule in ics format.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Get class schedule from webreg

Unduh file ekstensi Get class schedule from webreg 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

                        Note: this extension is for UCSD students only!

This chrome extension enables you to generate a calendar file of your class schedule on webreg. The file is compatible with the common calendar software: google calendar, apple calendar, etc.

You need to log in webreg before you can use it.

Please help me improve it. https://github.com/plrectco/GetCalendar                    

Informasi Dasar Ekstensi

Nama Get class schedule from webreg Get class schedule from webreg
ID jegpbhkmochlenmlhalmgbdcdkbgfhab
URL Resmi https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab
Deskripsi This extension will download the class schedule in ics format.
Ukuran File 18.21 KB
Jumlah Instalasi 13
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-01-17
Tanggal Publikasi 2018-01-16
Pengembang Unknown
Tipe Pembayaran free
Situs Ekstensi https://github.com/plrectco/GetCalendar
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get class schedule from webreg",
    "description": "This extension will download the class schedule in ics format.",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_title": "Download the class schedule",
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/act.ucsd.edu\/*"
            ],
            "js": [
                "ics.deps.min.js",
                "ics1.js",
                "script.js"
            ]
        }
    ]
}