Unimelb WAM Checker

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

Qu'est-ce que Unimelb WAM Checker ?

Unimelb WAM Checker est une extension Chrome développée par Xiao Liang Yu, et sa fonction principale est "This extension will notify you when your WAM has been changed.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Unimelb WAM Checker

Téléchargez les fichiers d'extension Unimelb WAM Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Unimelb WAM Checker Unimelb WAM Checker
ID kjdhdamemgfkkhblkfomomoohigekhll
URL Officiel https://chromewebstore.google.com/detail/unimelb-wam-checker/kjdhdamemgfkkhblkfomomoohigekhll
Description This extension will notify you when your WAM has been changed.
Taille du Fichier 2.91 MB
Nombre d'Installations 17
Version Actuelle 2.0.1
Dernière Mise à Jour 2017-11-21
Date de Publication 2017-11-20
Évaluation 5.00/5 Total 2 Évaluations
Développeur Xiao Liang Yu
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/yxliang01/Unimelb-WAM-Checker
URL de la Page d'Aide https://github.com/yxliang01/Unimelb-WAM-Checker/issues
Langues Prises en Charge 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"
    ]
}