CG Spunk

An extension to enhance the CodinGame experience

CG Spunkคืออะไร?

CG Spunk เป็นส่วนขยายของ Chrome ที่พัฒนาโดย danbhentschel และคุณลักษณะหลักของมันคือ "An extension to enhance the CodinGame experience"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CG Spunk

ดาวน์โหลดไฟล์ส่วนขยาย CG Spunk ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The current implementation adds the following to the CodinGame multiplayer IDEs:

 - SWAP button to swap the AI agent positions
 - BATCH_RUN button to start a run of multiple matches

Feedback can be provided here:

https://forum.codingame.com/t/introducing-cg-spunk/1895

Github here:

https://github.com/danBhentschel/CGSpunk

Issues can be submitted at:

https://github.com/danBhentschel/CGSpunk/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CG Spunk CG Spunk
ID bkmddelokmckldmgeeiheohknodgaphi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/cg-spunk/bkmddelokmckldmgeeiheohknodgaphi
คำอธิบาย An extension to enhance the CodinGame experience
ขนาดไฟล์ 826 KB
จำนวนการติดตั้ง 375
เวอร์ชันปัจจุบัน 0.2.25
อัปเดตครั้งล่าสุด 2018-08-24
วันที่เผยแพร่ 2018-08-24
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา danbhentschel
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.2.25",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "author": "danBhentschel",
    "icons": {
        "16": "images\/CGSpunk_16.png",
        "19": "images\/CGSpunk_19.png",
        "48": "images\/CGSpunk_48.png",
        "128": "images\/CGSpunk_128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/StartupNotification.js",
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        "notifications",
        "https:\/\/www.codingame.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.codingame.com\/*"
            ],
            "js": [
                "downloaded_libs\/jquery\/jquery.min.js",
                "scripts\/QueryStringHelper.js",
                "scripts\/IdeDomManipulator.js",
                "scripts\/BatchRunOptions.js",
                "scripts\/BatchRunRecorder.js",
                "scripts\/BatchResultsReporter.js",
                "scripts\/BatchRunner.js",
                "scripts\/MatchGenerator.js",
                "scripts\/IdeActions.js",
                "scripts\/contentscript.js",
                "scripts\/contentscript_ide.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "scripts\/Injected.js"
    ],
    "options_ui": {
        "page": "dialogs\/options.html",
        "chrome_style": true
    }
}