Jupyter Coder
Capture data in Jupyter Notebook cells and send to a remote server.
Jupyter Coderとは何ですか?
Jupyter Coderはjupytercoder0765によって開発されたChromeの拡張機能で、その主な機能は「Capture data in Jupyter Notebook cells and send to a remote server.」です。
拡張機能のスクリーンショット
Jupyter Coder拡張機能のCRXファイルをダウンロード
Jupyter Coder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 !
拡張機能の基本情報
名前 | Jupyter Coder |
ID | kbedojkmlknhepcaggkdimefcbiifkjf |
公式URL | https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf |
説明 | Capture data in Jupyter Notebook cells and send to a remote server. |
ファイルサイズ | 649 KB |
インストール数 | 232 |
現在のバージョン | 0.2.0.0 |
最終更新日 | 2023-06-12 |
公開日 | 2023-04-26 |
開発者 | jupytercoder0765 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } ] } |