CSSE Quiz Copy
Adds a button to the UC CSSE Quiz server that copies the testcase examples for you
What is CSSE Quiz Copy?
CSSE Quiz Copy is a Chrome extension developed by Unknown, and its main feature is "Adds a button to the UC CSSE Quiz server that copies the testcase examples for you".
Download CSSE Quiz Copy Extension CRX File
Download CSSE Quiz Copy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | CSSE Quiz Copy |
ID | fnekceidodfmliaamlcpaaaimmnncdic |
Official URL | https://chromewebstore.google.com/detail/csse-quiz-copy/fnekceidodfmliaamlcpaaaimmnncdic |
Description | Adds a button to the UC CSSE Quiz server that copies the testcase examples for you |
File Size | 39.69 KB |
Installation Count | 23 |
Current Version | 1.0 |
Last Updated | 2018-05-02 |
Publish Date | 2018-05-01 |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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" ] } |