CG Spunk
An extension to enhance the CodinGame experience
CG Spunkとは何ですか?
CG Spunkはdanbhentschelによって開発されたChromeの拡張機能で、その主な機能は「An extension to enhance the CodinGame experience」です。
拡張機能のスクリーンショット
CG Spunk拡張機能のCRXファイルをダウンロード
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
拡張機能の基本情報
名前 | |
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 |
Eメール | [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 } } |