Get class schedule from webreg

This extension will download the class schedule in ics format.

ما هو Get class schedule from webreg؟

Get class schedule from webreg هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension will download the class schedule in ics format.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Get class schedule from webreg

قم بتنزيل ملفات الامتداد Get class schedule from webreg بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Get class schedule from webreg Get class schedule from webreg
ID jegpbhkmochlenmlhalmgbdcdkbgfhab
عنوان URL الرسمي https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab
الوصف This extension will download the class schedule in ics format.
حجم الملف 18.21 KB
عدد التثبيتات 13
النسخة الحالية 1.0
آخر تحديث 2018-01-17
تاريخ النشر 2018-01-16
المطور Unknown
نوع الدفع free
موقع الإضافة https://github.com/plrectco/GetCalendar
اللغات المدعومة 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"
            ]
        }
    ]
}