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 |
官方網址 | 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 } } |