Unimelb WAM Checker
This extension will notify you when your WAM has been changed.
Co to jest Unimelb WAM Checker?
Unimelb WAM Checker to rozszerzenie Chrome opracowane przez Xiao Liang Yu, a jego główną funkcją jest „This extension will notify you when your WAM has been changed.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Unimelb WAM Checker
Pobierz pliki rozszerzeń Unimelb WAM Checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Unimelb WAM Checker |
ID | kjdhdamemgfkkhblkfomomoohigekhll |
Oficjalny URL | https://chromewebstore.google.com/detail/unimelb-wam-checker/kjdhdamemgfkkhblkfomomoohigekhll |
Opis | This extension will notify you when your WAM has been changed. |
Rozmiar pliku | 2.91 MB |
Liczba instalacji | 17 |
Aktualna Wersja | 2.0.1 |
Ostatnia Aktualizacja | 2017-11-21 |
Data Publikacji | 2017-11-20 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Xiao Liang Yu |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/yxliang01/Unimelb-WAM-Checker |
Adres URL Strony Pomocy | https://github.com/yxliang01/Unimelb-WAM-Checker/issues |
Obsługiwane Języki | 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" ] } |