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
公式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
Eメール [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"
    ]
}