CodinGame Sync - Ext
CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.
Cos'è CodinGame Sync - Ext?
CodinGame Sync - Ext è un'estensione di Chrome sviluppata da CodinGame, e la sua funzione principale è "CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CodinGame Sync - Ext
Scarica i file di estensione CodinGame Sync - Ext in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Keep Coding! https://www.codingame.com/forum/t/codingame-sync-beta/
Informazioni di Base sull'Estensione
Nome | |
ID | ldjnbdgcceengbjkalemckffhaajkehd |
URL Ufficiale | https://chromewebstore.google.com/detail/codingame-sync-ext/ldjnbdgcceengbjkalemckffhaajkehd |
Descrizione | CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor. |
Dimensione del File | 44.93 KB |
Conteggio Installazioni | 10,238 |
Versione Corrente | 1.1.1 Ext |
Ultimo Aggiornamento | 2022-10-06 |
Data di Pubblicazione | 2015-12-16 |
Valutazione | 4.52/5 Totale 29 Valutazioni |
Sviluppatore | CodinGame |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.codingame.com |
URL della Pagina di Aiuto | https://www.codingame.com/forum/t/codingame-sync-beta |
URL della Pagina della Politica sulla Privacy | https://www.codingame.com/legal/privacy-policy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CodinGame Sync - Ext", "version": "1.1.1", "version_name": "1.1.1 Ext", "minimum_chrome_version": "35", "description": "CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.", "icons": { "128": "images\/icon128.png", "38": "images\/icon_codingame_sync_01.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "js": [ "lib\/jquery-1.8.2.min.js", "js\/content.js" ], "matches": [ "http:\/\/*.codingame.com\/*", "https:\/\/*.codingame.com\/*" ] } ], "content_security_policy": "script-src 'self' ; object-src 'self'", "permissions": [ "tabs" ], "page_action": { "default_title": "CG-Sync" } } |