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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |