Jupyter Coder
Capture data in Jupyter Notebook cells and send to a remote server.
What is Jupyter Coder?
Jupyter Coder is a Chrome extension developed by jupytercoder0765, and its main feature is "Capture data in Jupyter Notebook cells and send to a remote server.".
Extension Screenshots
Download Jupyter Coder Extension CRX File
Download Jupyter Coder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 !
Extension Basic Information
Name | Jupyter Coder |
ID | kbedojkmlknhepcaggkdimefcbiifkjf |
Official URL | https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf |
Description | Capture data in Jupyter Notebook cells and send to a remote server. |
File Size | 649 KB |
Installation Count | 232 |
Current Version | 0.2.0.0 |
Last Updated | 2023-06-12 |
Publish Date | 2023-04-26 |
Developer | jupytercoder0765 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |