Jupyter Coder
Capture data in Jupyter Notebook cells and send to a remote server.
Qu'est-ce que Jupyter Coder ?
Jupyter Coder est une extension Chrome développée par jupytercoder0765, et sa fonction principale est "Capture data in Jupyter Notebook cells and send to a remote server.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Jupyter Coder
Téléchargez les fichiers d'extension Jupyter Coder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 !
Informations de Base sur l'Extension
Nom | Jupyter Coder |
ID | kbedojkmlknhepcaggkdimefcbiifkjf |
URL Officiel | https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf |
Description | Capture data in Jupyter Notebook cells and send to a remote server. |
Taille du Fichier | 649 KB |
Nombre d'Installations | 232 |
Version Actuelle | 0.2.0.0 |
Dernière Mise à Jour | 2023-06-12 |
Date de Publication | 2023-04-26 |
Développeur | jupytercoder0765 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |