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                    

擴展基本資訊

名稱 CSSE Quiz Copy CSSE Quiz Copy
ID fnekceidodfmliaamlcpaaaimmnncdic
官方網址 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"
    ]
}