CheckiO
CheckiO is the game for coders https://checkio.org/
O que é CheckiO?
CheckiO é uma extensão do Chrome desenvolvida por checkio, e sua principal característica é "CheckiO is the game for coders https://checkio.org/".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão CheckiO
Baixe arquivos de extensão CheckiO no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | |
ID | mlglngjgefkbflbmelghfeijmojocnbi |
URL Oficial | https://chrome.google.com/webstore/detail/checkio/mlglngjgefkbflbmelghfeijmojocnbi |
Descrição | CheckiO is the game for coders https://checkio.org/ |
Tamanho do Arquivo | 8.47 KB |
Contagem de Instalações | 1,000 |
Versão Atual | 1.2.3 |
Última Atualização | 2018-12-18 |
Data de Publicação | 2018-12-18 |
Classificação | 2.14/5 Total de 22 Avaliações |
Desenvolvedor | checkio |
Tipo de Pagamento | free |
Site da Extensão | https://checkio.org/ |
URL da Página de Ajuda | https://py.checkio.org/blog/new-tool-checkio-client/ |
Idiomas Suportados | 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" } } |