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 Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will download the class schedule in ics format."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Get class schedule from webreg एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}