CSSE Quiz Copy
Adds a button to the UC CSSE Quiz server that copies the testcase examples for you
Cos'è CSSE Quiz Copy?
CSSE Quiz Copy è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Adds a button to the UC CSSE Quiz server that copies the testcase examples for you".
Scarica il file CRX dell'estensione CSSE Quiz Copy
Scarica i file di estensione CSSE Quiz Copy 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
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
Informazioni di Base sull'Estensione
Nome | CSSE Quiz Copy |
ID | fnekceidodfmliaamlcpaaaimmnncdic |
URL Ufficiale | https://chromewebstore.google.com/detail/csse-quiz-copy/fnekceidodfmliaamlcpaaaimmnncdic |
Descrizione | Adds a button to the UC CSSE Quiz server that copies the testcase examples for you |
Dimensione del File | 39.69 KB |
Conteggio Installazioni | 23 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-05-02 |
Data di Pubblicazione | 2018-05-01 |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |