Husky Reg Master
Helper tools for UW course registration
Husky Reg Master क्या है?
Husky Reg Master Kyle Yan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helper tools for UW course registration"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Husky Reg Master एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } |