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"
]
} | |