Unimelb WAM Checker
This extension will notify you when your WAM has been changed.
What is Unimelb WAM Checker?
Unimelb WAM Checker is a Chrome extension developed by Xiao Liang Yu, and its main feature is "This extension will notify you when your WAM has been changed.".
Extension Screenshots
Download Unimelb WAM Checker Extension CRX File
Download Unimelb WAM Checker 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
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!
Extension Basic Information
Name | Unimelb WAM Checker |
ID | kjdhdamemgfkkhblkfomomoohigekhll |
Official URL | https://chromewebstore.google.com/detail/unimelb-wam-checker/kjdhdamemgfkkhblkfomomoohigekhll |
Description | This extension will notify you when your WAM has been changed. |
File Size | 2.91 MB |
Installation Count | 17 |
Current Version | 2.0.1 |
Last Updated | 2017-11-21 |
Publish Date | 2017-11-20 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Xiao Liang Yu |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/yxliang01/Unimelb-WAM-Checker |
Help Page URL | https://github.com/yxliang01/Unimelb-WAM-Checker/issues |
Supported Languages | 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" ] } |