CG Spunk

An extension to enhance the CodinGame experience

CG Spunk란 무엇입니까?

CG Spunk은(는) danbhentschel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to enhance the CodinGame experience"입니다.

확장 프로그램 스크린샷

screenshot

CG Spunk 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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