Unimelb WAM Checker
This extension will notify you when your WAM has been changed.
Was ist Unimelb WAM Checker?
Unimelb WAM Checker ist eine Chrome-Erweiterung, die von Xiao Liang Yu entwickelt wurde, und ihr Hauptmerkmal ist "This extension will notify you when your WAM has been changed.".
Erweiterungsscreenshots
Unimelb WAM Checker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Unimelb WAM Checker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Unimelb WAM Checker |
ID | kjdhdamemgfkkhblkfomomoohigekhll |
Offizielle URL | https://chromewebstore.google.com/detail/unimelb-wam-checker/kjdhdamemgfkkhblkfomomoohigekhll |
Beschreibung | This extension will notify you when your WAM has been changed. |
Dateigröße | 2.91 MB |
Installationsanzahl | 17 |
Aktuelle Version | 2.0.1 |
Letztes Update | 2017-11-21 |
Veröffentlichungsdatum | 2017-11-20 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Xiao Liang Yu |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/yxliang01/Unimelb-WAM-Checker |
Hilfeseite URL | https://github.com/yxliang01/Unimelb-WAM-Checker/issues |
Unterstützte Sprachen | 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" ] } |