Husky Reg Master

Helper tools for UW course registration

Husky Reg Master란 무엇입니까?

Husky Reg Master은(는) Kyle Yan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helper tools for UW course registration"입니다.

확장 프로그램 스크린샷

screenshot

Husky Reg Master 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A registration tool based on https://github.com/noname01/huskyReg. The original plugin is no longer working. This plugin helps you quickly register for classes that you find on the UW time schedule.                    

확장 프로그램 기본 정보

이름 Husky Reg Master Husky Reg Master
ID dndjlpepndocgikpbddkfkcnfijgcnpo
공식 URL https://chromewebstore.google.com/detail/husky-reg-master/dndjlpepndocgikpbddkfkcnfijgcnpo
설명 Helper tools for UW course registration
파일 크기 1.34 MB
설치 횟수 10
현재 버전 0.5.1
최근 업데이트 2021-02-26
출시 날짜 2016-11-15
평점 5.00/5 총 1 개의 평점
개발자 Kyle Yan
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Husky Reg Master",
    "description": "Helper tools for UW course registration",
    "version": "0.5.1",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "omnibox": {
        "keyword": "reg"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        },
        "default_title": "Husky Reg Master"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.5.1.min.js",
                "timeSch.js",
                "regPage.js",
                "slnPage.js"
            ],
            "matches": [
                "http:\/\/www.washington.edu\/students\/timeschd\/*",
                "https:\/\/sdb.admin.uw.edu\/students\/uwnetid\/register.asp",
                "https:\/\/sdb.admin.uw.edu\/timeschd\/uwnetid\/sln.asp*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventPage.js",
            "lib.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage"
    ]
}