Unimelb WAM Checker
This extension will notify you when your WAM has been changed.
Vad är Unimelb WAM Checker?
Unimelb WAM Checker är en Chrome-tillägg utvecklad av Xiao Liang Yu, och dess huvudfunktion är "This extension will notify you when your WAM has been changed.".
Tilläggsskärmbilder
Ladda ner Unimelb WAM Checker-förlängningens CRX-fil
Ladda ner Unimelb WAM Checker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Unimelb WAM Checker |
ID | kjdhdamemgfkkhblkfomomoohigekhll |
Officiell webbadress | https://chromewebstore.google.com/detail/unimelb-wam-checker/kjdhdamemgfkkhblkfomomoohigekhll |
Beskrivning | This extension will notify you when your WAM has been changed. |
Filstorlek | 2.91 MB |
Antal Installationer | 17 |
Aktuell Version | 2.0.1 |
Senast Uppdaterad | 2017-11-21 |
Publiceringsdatum | 2017-11-20 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Xiao Liang Yu |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/yxliang01/Unimelb-WAM-Checker |
Hjälpsida URL | https://github.com/yxliang01/Unimelb-WAM-Checker/issues |
Stödda Språk | 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" ] } |