Unimelb WAM Checker
This extension will notify you when your WAM has been changed.
Unimelb WAM Checkerとは何ですか?
Unimelb WAM CheckerはXiao Liang Yuによって開発されたChromeの拡張機能で、その主な機能は「This extension will notify you when your WAM has been changed.」です。
拡張機能のスクリーンショット
Unimelb WAM Checker拡張機能のCRXファイルをダウンロード
Unimelb WAM Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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!
拡張機能の基本情報
名前 | Unimelb WAM Checker |
ID | kjdhdamemgfkkhblkfomomoohigekhll |
公式URL | https://chromewebstore.google.com/detail/unimelb-wam-checker/kjdhdamemgfkkhblkfomomoohigekhll |
説明 | This extension will notify you when your WAM has been changed. |
ファイルサイズ | 2.91 MB |
インストール数 | 17 |
現在のバージョン | 2.0.1 |
最終更新日 | 2017-11-21 |
公開日 | 2017-11-20 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Xiao Liang Yu |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/yxliang01/Unimelb-WAM-Checker |
ヘルプページのURL | https://github.com/yxliang01/Unimelb-WAM-Checker/issues |
対応言語 | 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" ] } |