CG Spunk
An extension to enhance the CodinGame experience
Τι είναι το CG Spunk;
Το CG Spunk είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον danbhentschel, και η κύρια λειτουργία του είναι "An extension to enhance the CodinGame experience".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CG Spunk
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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 } } |