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文件

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

擴展使用說明

                        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
官方網址 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"
    ]
}