Unimelb WAM Checker
This extension will notify you when your WAM has been changed.
Wat is Unimelb WAM Checker?
Unimelb WAM Checker is een Chrome-extensie ontwikkeld door Xiao Liang Yu, en de belangrijkste functie is "This extension will notify you when your WAM has been changed.".
Extensie Screenshots
Download het CRX-bestand van de extensie Unimelb WAM Checker
Download Unimelb WAM Checker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Unimelb WAM Checker |
ID | kjdhdamemgfkkhblkfomomoohigekhll |
Officiële URL | https://chromewebstore.google.com/detail/unimelb-wam-checker/kjdhdamemgfkkhblkfomomoohigekhll |
Beschrijving | This extension will notify you when your WAM has been changed. |
Bestandsgrootte | 2.91 MB |
Aantal Installaties | 17 |
Huidige Versie | 2.0.1 |
Laatst Bijgewerkt | 2017-11-21 |
Publicatiedatum | 2017-11-20 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Xiao Liang Yu |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/yxliang01/Unimelb-WAM-Checker |
Help Pagina-URL | https://github.com/yxliang01/Unimelb-WAM-Checker/issues |
Ondersteunde Talen | 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" ] } |