USC Schedule Helper

Shows available seats, professor ratings, and gives you the ability to export your calendar!

USC Schedule Helper क्या है?

USC Schedule Helper https://jonlu.ca द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows available seats, professor ratings, and gives you the ability to export your calendar!"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension makes registering for classes that much easier!

Quickly shows you:

- Rating for the professor
- How many seats are left in Lecture sections
- Whether the class is closed
- Whether the class section would conflict with your current schedule
- Emails for when a seat opens up in a class!
- Texts for when a seat opens up in a class!

Please note! The email notification service is still in Alpha and is not guaranteed to work.
Any feedback is welcome: [email protected]                    

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

नाम USC Schedule Helper USC Schedule Helper
ID gchplemiinhmilinflepfpmjhmbfnlhk
आधिकारिक URL https://chromewebstore.google.com/detail/usc-schedule-helper/gchplemiinhmilinflepfpmjhmbfnlhk
विवरण Shows available seats, professor ratings, and gives you the ability to export your calendar!
फ़ाइल का आकार 1.23 MB
स्थापना संख्या 20,000
वर्तमान संस्करण 13.0.1
अंतिम अपडेट 2024-01-14
प्रकाशन तिथि 2020-03-19
रेटिंग 4.86/5 कुल 28 रेटिंग्स
डेवलपर https://jonlu.ca
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jonluca/USCSpotsRemaining
सहायता पृष्ठ URL https://github.com/jonluca/USCSpotsRemaining
गोपनीयता नीति पृष्ठ URL https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "USC Schedule Helper",
    "description": "Shows available seats, professor ratings, and gives you the ability to export your calendar!",
    "version": "13.0.1",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/classes.usc.edu\/*\/classes\/*",
        "*:\/\/webreg.usc.edu\/*",
        "http:\/\/jonlu.ca\/*",
        "https:\/\/jonlu.ca\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/classes.usc.edu\/*\/classes\/*",
                "*:\/\/webreg.usc.edu\/*"
            ],
            "js": [
                "js\/libs\/jquery.js",
                "js\/common.js",
                "js\/libs\/moment.js",
                "js\/libs\/mailcheck.min.js",
                "js\/libs\/sweetalert.min.js",
                "USCScheduleHelper.js"
            ]
        }
    ],
    "icons": {
        "64": "images\/icon64.png",
        "32": "images\/icon32.png",
        "38": "images\/icon.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "js\/common.js"
    },
    "action": {
        "default_popup": "html\/popup.html",
        "default_title": "USC Schedule Helper"
    },
    "homepage_url": "https:\/\/jonlu.ca",
    "web_accessible_resources": [
        {
            "resources": [
                "data\/*",
                "css\/*",
                "images\/*",
                "js\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}