Unimelb WAM Checker

This extension will notify you when your WAM has been changed.

Cos'è Unimelb WAM Checker?

Unimelb WAM Checker è un'estensione di Chrome sviluppata da Xiao Liang Yu, e la sua funzione principale è "This extension will notify you when your WAM has been changed.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Unimelb WAM Checker

Scarica i file di estensione Unimelb WAM Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Unimelb WAM Checker Unimelb WAM Checker
ID kjdhdamemgfkkhblkfomomoohigekhll
URL Ufficiale https://chromewebstore.google.com/detail/unimelb-wam-checker/kjdhdamemgfkkhblkfomomoohigekhll
Descrizione This extension will notify you when your WAM has been changed.
Dimensione del File 2.91 MB
Conteggio Installazioni 17
Versione Corrente 2.0.1
Ultimo Aggiornamento 2017-11-21
Data di Pubblicazione 2017-11-20
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Xiao Liang Yu
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/yxliang01/Unimelb-WAM-Checker
URL della Pagina di Aiuto https://github.com/yxliang01/Unimelb-WAM-Checker/issues
Lingue Supportate 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"
    ]
}