CSSE Quiz Copy

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

Apa itu CSSE Quiz Copy?

CSSE Quiz Copy adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Adds a button to the UC CSSE Quiz server that copies the testcase examples for you".

Unduh Berkas CRX Ekstensi CSSE Quiz Copy

Unduh file ekstensi CSSE Quiz Copy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama CSSE Quiz Copy CSSE Quiz Copy
ID fnekceidodfmliaamlcpaaaimmnncdic
URL Resmi https://chromewebstore.google.com/detail/csse-quiz-copy/fnekceidodfmliaamlcpaaaimmnncdic
Deskripsi Adds a button to the UC CSSE Quiz server that copies the testcase examples for you
Ukuran File 39.69 KB
Jumlah Instalasi 23
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-05-02
Tanggal Publikasi 2018-05-01
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}