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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}