CodinGame Sync - Ext
CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.
¿Qué es CodinGame Sync - Ext?
CodinGame Sync - Ext es una extensión de Chrome desarrollada por CodinGame, y su función principal es "CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión CodinGame Sync - Ext
Descarga archivos de extensión CodinGame Sync - Ext en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Keep Coding! https://www.codingame.com/forum/t/codingame-sync-beta/
Información Básica de la Extensión
Nombre | |
ID | ldjnbdgcceengbjkalemckffhaajkehd |
URL Oficial | https://chromewebstore.google.com/detail/codingame-sync-ext/ldjnbdgcceengbjkalemckffhaajkehd |
Descripción | CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor. |
Tamaño del Archivo | 44.93 KB |
Cantidad de Instalaciones | 10,238 |
Versión Actual | 1.1.1 Ext |
Última Actualización | 2022-10-06 |
Fecha de Publicación | 2015-12-16 |
Calificación | 4.52/5 Total de 29 Calificaciones |
Desarrollador | CodinGame |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.codingame.com |
URL de la Página de Ayuda | https://www.codingame.com/forum/t/codingame-sync-beta |
URL de la Página de Política de Privacidad | https://www.codingame.com/legal/privacy-policy |
Idiomas Soportados | 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" } } |