CodinGame Sync - Ext
CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.
Что такое CodinGame Sync - Ext?
CodinGame Sync - Ext - это расширение Chrome, разработанное CodinGame, и его основная функция - "CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.".
Снимки экрана расширения
Скачать файл CRX расширения CodinGame Sync - Ext
Скачайте файлы расширений CodinGame Sync - Ext в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Keep Coding!
https://www.codingame.com/forum/t/codingame-sync-beta/ Основная информация о расширении
| Название | |
| ID | ldjnbdgcceengbjkalemckffhaajkehd |
| Официальный URL | https://chromewebstore.google.com/detail/codingame-sync-ext/ldjnbdgcceengbjkalemckffhaajkehd |
| Описание | CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor. |
| Размер файла | 44.93 KB |
| Количество установок | 10,238 |
| Текущая Версия | 1.1.1 Ext |
| Последнее Обновление | 2022-10-06 |
| Дата публикации | 2015-12-16 |
| Рейтинг | 4.52/5 Всего 29 оценок |
| Разработчик | CodinGame |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://www.codingame.com |
| URL страницы помощи | https://www.codingame.com/forum/t/codingame-sync-beta |
| URL страницы политики конфиденциальности | https://www.codingame.com/legal/privacy-policy |
| Поддерживаемые языки | 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"
}
} | |