CityU Quick Course Adder

To help you fill the CRNs quickly.

什麼是CityU Quick Course Adder?

CityU Quick Course Adder是由h.mattjunk開發的Chrome擴展程式,該擴展的主要功能是“To help you fill the CRNs quickly.”。

擴展截圖

screenshot

下載CityU Quick Course Adder擴展crx文件

下載CityU Quick Course Adder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 CityU Quick Course Adder CityU Quick Course Adder
ID ailiklnkhplhpoeakbpcgomfdglmojbh
官方網址 https://chromewebstore.google.com/detail/cityu-quick-course-adder/ailiklnkhplhpoeakbpcgomfdglmojbh
簡介 To help you fill the CRNs quickly.
檔案大小 34.91 KB
安裝次數 459
目前版本 1.0
更新時間 2023-09-06
上架時間 2023-09-06
評分 5.00/5 共 1 次評分
開發者 h.mattjunk
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension
說明頁面URL https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/How-To-Use%3F
隱私政策頁面URL https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/Privacy-Policy
支援的語言 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"
    }
}