Jupyter Coder
Capture data in Jupyter Notebook cells and send to a remote server.
O que é Jupyter Coder?
Jupyter Coder é uma extensão do Chrome desenvolvida por jupytercoder0765, e sua principal característica é "Capture data in Jupyter Notebook cells and send to a remote server.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Jupyter Coder
Baixe arquivos de extensão Jupyter Coder 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
When in jupyter notebook, the plugin performs code auto-completion using the starcoder model Follow https://github.com/bigcode-project/jupytercoder to provide your hf read only api key. Feel free to contribute !
Informações Básicas da Extensão
Nome | Jupyter Coder |
ID | kbedojkmlknhepcaggkdimefcbiifkjf |
URL Oficial | https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf |
Descrição | Capture data in Jupyter Notebook cells and send to a remote server. |
Tamanho do Arquivo | 649 KB |
Contagem de Instalações | 232 |
Versão Atual | 0.2.0.0 |
Última Atualização | 2023-06-12 |
Data de Publicação | 2023-04-26 |
Desenvolvedor | jupytercoder0765 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Jupyter Coder", "version": "0.2.0.0", "description": "Capture data in Jupyter Notebook cells and send to a remote server.", "icons": { "32": "icons\/flow_64.png", "48": "icons\/flow_128.png", "128": "icons\/flow_256.png" }, "permissions": [ "storage" ], "action": { "default_popup": "options\/options.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/api.js", "src\/state.js", "src\/preferences.js", "src\/utility.js", "src\/animation.js", "src\/diff.js", "src\/content.js" ], "css": [ "options\/styles.css" ], "run_at": "document_end" } ] } |