CG Local
Synchronizes the CodinGame IDE with a local file so you can use your own editor.
什麼是CG Local?
CG Local是由Jasper van Merle開發的Chrome擴展程式,該擴展的主要功能是“Synchronizes the CodinGame IDE with a local file so you can use your own editor.”。
擴展截圖
下載CG Local擴展crx文件
下載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 |
官方網址 | 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 } } |