CSSE Quiz Copy

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

Wat is CSSE Quiz Copy?

CSSE Quiz Copy is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Adds a button to the UC CSSE Quiz server that copies the testcase examples for you".

Download het CRX-bestand van de extensie CSSE Quiz Copy

Download CSSE Quiz Copy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam CSSE Quiz Copy CSSE Quiz Copy
ID fnekceidodfmliaamlcpaaaimmnncdic
Officiële URL https://chromewebstore.google.com/detail/csse-quiz-copy/fnekceidodfmliaamlcpaaaimmnncdic
Beschrijving Adds a button to the UC CSSE Quiz server that copies the testcase examples for you
Bestandsgrootte 39.69 KB
Aantal Installaties 23
Huidige Versie 1.0
Laatst Bijgewerkt 2018-05-02
Publicatiedatum 2018-05-01
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    ]
}