CSSE Quiz Copy

Adds a button to the UC CSSE Quiz server that copies the testcase examples for you

Was ist CSSE Quiz Copy?

CSSE Quiz Copy ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Adds a button to the UC CSSE Quiz server that copies the testcase examples for you".

CSSE Quiz Copy-Erweiterungs-CRX-Datei herunterladen

Laden Sie CSSE Quiz Copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Install this if you're sick of the UC CSSE Quiz Server giving terrible feedback with errors or if you just want a faster way of copying the testcases                    

Grundlegende Informationen zur Erweiterung

Name CSSE Quiz Copy CSSE Quiz Copy
ID fnekceidodfmliaamlcpaaaimmnncdic
Offizielle URL https://chromewebstore.google.com/detail/csse-quiz-copy/fnekceidodfmliaamlcpaaaimmnncdic
Beschreibung Adds a button to the UC CSSE Quiz server that copies the testcase examples for you
Dateigröße 39.69 KB
Installationsanzahl 23
Aktuelle Version 1.0
Letztes Update 2018-05-02
Veröffentlichungsdatum 2018-05-01
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSSE Quiz Copy",
    "description": "Adds a button to the UC CSSE Quiz server that copies the testcase examples for you",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/quiz2018.csse.canterbury.ac.nz\/mod\/quiz\/*",
                "https:\/\/quiz2018.csse.canterbury.ac.nz\/mod\/quiz\/*"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab"
    ]
}