CSSE Quiz Copy
Adds a button to the UC CSSE Quiz server that copies the testcase examples for you
Vad är CSSE Quiz Copy?
CSSE Quiz Copy är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Adds a button to the UC CSSE Quiz server that copies the testcase examples for you".
Ladda ner CSSE Quiz Copy-förlängningens CRX-fil
Ladda ner CSSE Quiz Copy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | CSSE Quiz Copy |
ID | fnekceidodfmliaamlcpaaaimmnncdic |
Officiell webbadress | https://chromewebstore.google.com/detail/csse-quiz-copy/fnekceidodfmliaamlcpaaaimmnncdic |
Beskrivning | Adds a button to the UC CSSE Quiz server that copies the testcase examples for you |
Filstorlek | 39.69 KB |
Antal Installationer | 23 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2018-05-02 |
Publiceringsdatum | 2018-05-01 |
Utvecklare | Unknown |
Betalningssätt | free |
Stödda Språk | 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" ] } |