Jupyter Coder
Capture data in Jupyter Notebook cells and send to a remote server.
Cos'è Jupyter Coder?
Jupyter Coder è un'estensione di Chrome sviluppata da jupytercoder0765, e la sua funzione principale è "Capture data in Jupyter Notebook cells and send to a remote server.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jupyter Coder
Scarica i file di estensione Jupyter Coder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 ! Informazioni di Base sull'Estensione
| Nome | |
| ID | kbedojkmlknhepcaggkdimefcbiifkjf |
| URL Ufficiale | https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf |
| Descrizione | Capture data in Jupyter Notebook cells and send to a remote server. |
| Dimensione del File | 649 KB |
| Conteggio Installazioni | 232 |
| Versione Corrente | 0.2.0.0 |
| Ultimo Aggiornamento | 2023-06-12 |
| Data di Pubblicazione | 2023-04-26 |
| Sviluppatore | jupytercoder0765 |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
]
} | |