CG Spunk

An extension to enhance the CodinGame experience

CG Spunk là gì?

CG Spunk là một tiện ích mở rộng Chrome được phát triển bởi danbhentschel, và tính năng chính của nó là "An extension to enhance the CodinGame experience".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CG Spunk

Tải xuống các tệp mở rộng CG Spunk dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CG Spunk CG Spunk
ID bkmddelokmckldmgeeiheohknodgaphi
URL Chính Thức https://chrome.google.com/webstore/detail/cg-spunk/bkmddelokmckldmgeeiheohknodgaphi
Mô tả An extension to enhance the CodinGame experience
Kích Thước Tệp 826 KB
Số Lần Cài Đặt 375
Phiên Bản Hiện Tại 0.2.25
Cập Nhật Lần Cuối 2018-08-24
Ngày Phát Hành 2018-08-24
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển danbhentschel
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}