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是由CodinGame开发的Chrome扩展程序,该扩展的主要功能是“CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.”。
扩展截图
下载CodinGame Sync - Ext扩展crx文件
下载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"
}
} | |