CityU Quick Course Adder

To help you fill the CRNs quickly.

CityU Quick Course Adder là gì?

CityU Quick Course Adder là một tiện ích mở rộng Chrome được phát triển bởi h.mattjunk, và tính năng chính của nó là "To help you fill the CRNs quickly.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CityU Quick Course Adder

Tải xuống các tệp mở rộng CityU Quick Course Adder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CityU Quick Course Adder CityU Quick Course Adder
ID ailiklnkhplhpoeakbpcgomfdglmojbh
URL Chính Thức https://chromewebstore.google.com/detail/cityu-quick-course-adder/ailiklnkhplhpoeakbpcgomfdglmojbh
Mô tả To help you fill the CRNs quickly.
Kích Thước Tệp 34.91 KB
Số Lần Cài Đặt 459
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-09-06
Ngày Phát Hành 2023-09-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển h.mattjunk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension
URL Trang Trợ Giúp https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/How-To-Use%3F
URL Trang Chính Sách Bảo Mật https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}