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."입니다.

확장 프로그램 스크린샷

screenshot

CG Local 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 CG Local
ID ihakjfajoihlncbnggmcmmeabclpfdgo
공식 URL 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
    }
}