CityU Quick Course Adder

To help you fill the CRNs quickly.

CityU Quick Course Adderคืออะไร?

CityU Quick Course Adder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย h.mattjunk และคุณลักษณะหลักของมันคือ "To help you fill the CRNs quickly."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CityU Quick Course Adder

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    }
}