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.”。

扩展截图

screenshot

下载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 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
电子邮箱 [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"
    ]
}