Husky Reg Master

Helper tools for UW course registration

What is Husky Reg Master?

Husky Reg Master is a Chrome extension developed by Kyle Yan, and its main feature is "Helper tools for UW course registration".

Extension Screenshots

screenshot

Download Husky Reg Master Extension CRX File

Download Husky Reg Master extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Husky Reg Master Husky Reg Master
ID dndjlpepndocgikpbddkfkcnfijgcnpo
Official URL https://chromewebstore.google.com/detail/husky-reg-master/dndjlpepndocgikpbddkfkcnfijgcnpo
Description Helper tools for UW course registration
File Size 1.34 MB
Installation Count 10
Current Version 0.5.1
Last Updated 2021-02-26
Publish Date 2016-11-15
Rating 5.00/5 Total 1 Ratings
Developer Kyle Yan
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}