Unimelb WAM Checker
This extension will notify you when your WAM has been changed.
Unimelb WAM Checkerคืออะไร?
Unimelb WAM Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Xiao Liang Yu และคุณลักษณะหลักของมันคือ "This extension will notify you when your WAM has been changed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unimelb WAM Checker
ดาวน์โหลดไฟล์ส่วนขยาย Unimelb WAM Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will notify you when your WAM has been changed. Currently, only for Unimelb students. If you would like to improve or add support to your university, please visit https://github.com/yxliang01/Unimelb-WAM-Checker . Comments are welcome!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Unimelb WAM Checker |
ID | kjdhdamemgfkkhblkfomomoohigekhll |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/unimelb-wam-checker/kjdhdamemgfkkhblkfomomoohigekhll |
คำอธิบาย | This extension will notify you when your WAM has been changed. |
ขนาดไฟล์ | 2.91 MB |
จำนวนการติดตั้ง | 17 |
เวอร์ชันปัจจุบัน | 2.0.1 |
อัปเดตครั้งล่าสุด | 2017-11-21 |
วันที่เผยแพร่ | 2017-11-20 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Xiao Liang Yu |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/yxliang01/Unimelb-WAM-Checker |
URL หน้าช่วยเหลือ | https://github.com/yxliang01/Unimelb-WAM-Checker/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "2.0.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "128": "images\/icon128.png", "512": "images\/icon512.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": true }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "128": "images\/icon128.png", "512": "images\/icon512.png" }, "default_title": "__MSG_browserActionTitle__", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/prod.ss.unimelb.edu.au\/student\/SM\/ResultsDtls*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "notifications", "alarms", "tabs" ] } |