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文件

下載CheckiO擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}