CheckiO

CheckiO is the game for coders https://checkio.org/

CheckiO란 무엇입니까?

CheckiO은(는) checkio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "CheckiO is the game for coders https://checkio.org/"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        CheckiO is web-based Python learning resource, where your task is to learn through playing games and solving intertesting quizzes.

CheckiO features it’s own feature complete web-based development environment, but many users prfer using desktop IDE’s. With Checkio Chrome Extension and Chrome Application you can now tie your desktop IDE to your CheckiO account and code wherever you want! (Note: you must install both Extension and Application)

Source Code: https://github.com/CheckiO/checkio-web-plugin

You will need to install CheckiO Client pip3 install checkio_client 

All changes that you apply in your local editor are instantly appears in CheckiO editor.

More info about how to configure Plugin you can read here https://py.checkio.org/blog/new-tool-checkio-client/

Suggestions and feedback are highly appreciated!                    

확장 프로그램 기본 정보

이름 CheckiO CheckiO
ID mlglngjgefkbflbmelghfeijmojocnbi
공식 URL https://chrome.google.com/webstore/detail/checkio/mlglngjgefkbflbmelghfeijmojocnbi
설명 CheckiO is the game for coders https://checkio.org/
파일 크기 8.47 KB
설치 횟수 1,000
현재 버전 1.2.3
최근 업데이트 2018-12-18
출시 날짜 2018-12-18
평점 2.14/5 총 22 개의 평점
개발자 checkio
결제 유형 free
확장 프로그램 웹 사이트 https://checkio.org/
도움말 페이지 URL https://py.checkio.org/blog/new-tool-checkio-client/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CheckiO",
    "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDHYhET96uR9siwDS75+IwHxcIw7EYx5uLte4sKqU7dzIAxvC6C8N1WQoHGXwpLlzeKdntZg+Jkrq7da\/QfJABF+X4Hwj78tmFvk09H0Z1KpoxVqk5bq5RTdH6qe7uDrmEMY0wae7fEfSKAfB5pQpO8JZhc2myIpktrHxgIT5WVcwIDAQAB",
    "version": "1.2.3",
    "description": "CheckiO is the game for coders https:\/\/checkio.org\/",
    "homepage_url": "https:\/\/checkio.org",
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": false,
            "matches": [
                "https:\/\/*.checkio.org\/*",
                "https:\/\/checkio.org\/*",
                "https:\/\/*.empireofcode.com\/*",
                "https:\/\/empireofcode.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "management",
        "nativeMessaging"
    ],
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    }
}