CG Spunk
An extension to enhance the CodinGame experience
Was ist CG Spunk?
CG Spunk ist eine Chrome-Erweiterung, die von danbhentschel entwickelt wurde, und ihr Hauptmerkmal ist "An extension to enhance the CodinGame experience".
Erweiterungsscreenshots
CG Spunk-Erweiterungs-CRX-Datei herunterladen
Laden Sie CG Spunk-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | bkmddelokmckldmgeeiheohknodgaphi |
Offizielle URL | https://chrome.google.com/webstore/detail/cg-spunk/bkmddelokmckldmgeeiheohknodgaphi |
Beschreibung | An extension to enhance the CodinGame experience |
Dateigröße | 826 KB |
Installationsanzahl | 375 |
Aktuelle Version | 0.2.25 |
Letztes Update | 2018-08-24 |
Veröffentlichungsdatum | 2018-08-24 |
Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
Entwickler | danbhentschel |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } } |