Jupyter Coder
Capture data in Jupyter Notebook cells and send to a remote server.
Wat is Jupyter Coder?
Jupyter Coder is een Chrome-extensie ontwikkeld door jupytercoder0765, en de belangrijkste functie is "Capture data in Jupyter Notebook cells and send to a remote server.".
Extensie Screenshots
Download het CRX-bestand van de extensie Jupyter Coder
Download Jupyter Coder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 !
Basisinformatie over de Extensie
Naam | Jupyter Coder |
ID | kbedojkmlknhepcaggkdimefcbiifkjf |
Officiële URL | https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf |
Beschrijving | Capture data in Jupyter Notebook cells and send to a remote server. |
Bestandsgrootte | 649 KB |
Aantal Installaties | 232 |
Huidige Versie | 0.2.0.0 |
Laatst Bijgewerkt | 2023-06-12 |
Publicatiedatum | 2023-04-26 |
Ontwikkelaar | jupytercoder0765 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |