CityU Quick Course Adder

To help you fill the CRNs quickly.

What is CityU Quick Course Adder?

CityU Quick Course Adder is a Chrome extension developed by h.mattjunk, and its main feature is "To help you fill the CRNs quickly.".

Extension Screenshots

screenshot

Download CityU Quick Course Adder Extension CRX File

Download CityU Quick Course Adder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        The CityU Quick Course Adder is a helpful Chrome extension that makes entering CRNs faster. You just preload your CRNs, and the extension will automatically instantly put them on the 'Add or Drop Classes' page for you. It's a real time-saver! 

This is an updated version, building on the original 2016 version by Sam (ideati.me), which is no longer available.                    

Extension Basic Information

Name CityU Quick Course Adder CityU Quick Course Adder
ID ailiklnkhplhpoeakbpcgomfdglmojbh
Official URL https://chromewebstore.google.com/detail/cityu-quick-course-adder/ailiklnkhplhpoeakbpcgomfdglmojbh
Description To help you fill the CRNs quickly.
File Size 34.91 KB
Installation Count 459
Current Version 1.0
Last Updated 2023-09-06
Publish Date 2023-09-06
Rating 5.00/5 Total 1 Ratings
Developer h.mattjunk
Email [email protected]
Payment Type free
Extension Website https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension
Help Page URL https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/How-To-Use%3F
Privacy Policy Page URL https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/Privacy-Policy
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CityU Quick Course Adder",
    "description": "To help you fill the CRNs quickly.",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/banweb.cityu.edu.hk\/*",
                "http:\/\/banweb.cityu.edu.hk\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "include_globs": [
                "*bwskfreg.P_AltPin*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}