Husky Reg Master
Helper tools for UW course registration
Husky Reg Masterคืออะไร?
Husky Reg Master เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kyle Yan และคุณลักษณะหลักของมันคือ "Helper tools for UW course registration"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Husky Reg Master
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } |