CG Spunk
An extension to enhance the CodinGame experience
CG Spunk क्या है?
CG Spunk danbhentschel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to enhance the CodinGame experience"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CG Spunk एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
एक्सटेंशन की मूल जानकारी
नाम | |
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 } } |