CSSE Quiz Copy
Adds a button to the UC CSSE Quiz server that copies the testcase examples for you
什么是CSSE Quiz Copy?
CSSE Quiz Copy是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Adds a button to the UC CSSE Quiz server that copies the testcase examples for you”。
下载CSSE Quiz Copy扩展crx文件
下载CSSE Quiz Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | fnekceidodfmliaamlcpaaaimmnncdic |
| 官方URL | https://chromewebstore.google.com/detail/csse-quiz-copy/fnekceidodfmliaamlcpaaaimmnncdic |
| 简介 | Adds a button to the UC CSSE Quiz server that copies the testcase examples for you |
| 文件大小 | 39.69 KB |
| 安装次数 | 23 |
| 当前版本 | 1.0 |
| 更新时间 | 2018-05-02 |
| 上架时间 | 2018-05-01 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | 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"
]
} | |