UCSD Schedule to Calendar

Add your UCSD Schedule from WebReg to your own Calendar using a .ics file.

UCSD Schedule to Calendar क्या है?

UCSD Schedule to Calendar OTApps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add your UCSD Schedule from WebReg to your own Calendar using a .ics file."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में UCSD Schedule to Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension allows UC San Diego students to convert their schedule in WebReg to a .ics file. This file can then be used with any calendar client to store their quarter schedule with a link provided to add to Google Calendar. All classes appear at the appropriate times and finals appear on the appropriate days for the quarter. Clicking on the icon will redirect to webreg and can redirect to current quarter by default.

This extension is set to work until 2023 and does not work with Special Summer Session courses. 

UCSD Schedule to Calendar is open source and code can be found in the link below.

Updates:
Version 0.0.0.8
Fixed bug with limiting number of courses

Version 0.0.0.7
Added anonymous authentication to add read/write permissions to schedules folder by same user.

Version 0.0.0.6
Added in complete functionality for incognito mode. Fixed bug for schedules including classes without times.

Version 0.0.0.5
Fixed bugs with copy link button. Changed colors

Version 0.0.0.4
On icon click redirect to webreg, added toggle to go to current quarter or not, added local storage saving for calendar to reduce server calls and storage on server

Version 0.0.0.3
Updated Permissions to only extension to work on act.ucsd.edu.
Redirects to current or upcoming quarter on WebReg when clicking icon.

Version 0.0.0.2
Added Link to Copy Calendar and import into any client through URL
Changed Google Calendar Button to reduce button clicks                    

एक्सटेंशन की मूल जानकारी

नाम UCSD Schedule to Calendar UCSD Schedule to Calendar
ID haafakimhdpglinagaadlgebflifeiho
आधिकारिक URL https://chromewebstore.google.com/detail/ucsd-schedule-to-calendar/haafakimhdpglinagaadlgebflifeiho
विवरण Add your UCSD Schedule from WebReg to your own Calendar using a .ics file.
फ़ाइल का आकार 828 KB
स्थापना संख्या 547
वर्तमान संस्करण 0.0.0.8
अंतिम अपडेट 2018-04-11
प्रकाशन तिथि 2018-04-10
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर OTApps
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/otoledan/UCSD-Schedule-to-Calendar
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UCSD Schedule to Calendar",
    "manifest_version": 2,
    "version": "0.0.0.8",
    "description": "Add your UCSD Schedule from WebReg to your own Calendar using a .ics file.",
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon1.png",
        "default_popup": "popup.html",
        "default_title": "UCSD Schedule to Calendar"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-331.js",
                "background.js"
            ],
            "matches": [
                "https:\/\/act.ucsd.edu\/webreg2\/*"
            ]
        }
    ],
    "permissions": [
        "downloads",
        "clipboardWrite",
        "tabs",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'",
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": false
    }
}