CG Local
Synchronizes the CodinGame IDE with a local file so you can use your own editor.
Τι είναι το CG Local;
Το CG Local είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jasper van Merle, και η κύρια λειτουργία του είναι "Synchronizes the CodinGame IDE with a local file so you can use your own editor.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CG Local
Λήψη αρχείων επέκτασης CG Local σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A browser extension which helps in synchronizing the CodinGame IDE with a local file. Has to be used in combination with CG Local App which takes care of the local filesystem and makes configuration easy through a GUI. The download link and installation instructions can be found in this CodinGame topic: https://www.codingame.com/forum/t/cg-local/10359/1
Βασικές Πληροφορίες Επέκτασης
Όνομα | CG Local |
ID | ihakjfajoihlncbnggmcmmeabclpfdgo |
Επίσημο URL | https://chromewebstore.google.com/detail/cg-local/ihakjfajoihlncbnggmcmmeabclpfdgo |
Περιγραφή | Synchronizes the CodinGame IDE with a local file so you can use your own editor. |
Μέγεθος Αρχείου | 34.28 KB |
Αριθμός Εγκαταστάσεων | 443 |
Τρέχουσα Έκδοση | 1.1.1 |
Τελευταία Ενημέρωση | 2020-05-08 |
Ημερομηνία Δημοσίευσης | 2020-05-07 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Jasper van Merle |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/jmerle/cg-local-ext |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/jmerle/cg-local-ext/issues |
URL της Σελίδας Πολιτικής Απορρήτου | https://gist.github.com/jmerle/5f446afd17b51328e2a87aee6b475358 |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CG Local", "description": "Synchronizes the CodinGame IDE with a local file so you can use your own editor.", "version": "1.1.1", "author": "Jasper van Merle", "homepage_url": "https:\/\/github.com\/jmerle\/cg-local-ext", "permissions": [ "tabs" ], "icons": { "16": "icons\/icon-16.png", "19": "icons\/icon-19.png", "20": "icons\/icon-20.png", "24": "icons\/icon-24.png", "32": "icons\/icon-32.png", "38": "icons\/icon-38.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.codingame.com\/*" ], "js": [ "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "page_action": { "default_icon": { "16": "icons\/icon-16.png", "19": "icons\/icon-19.png", "20": "icons\/icon-20.png", "24": "icons\/icon-24.png", "32": "icons\/icon-32.png", "38": "icons\/icon-38.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "96": "icons\/icon-96.png" }, "default_title": "Enable CG Local", "browser_style": false } } |