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.”。

扩展截图

screenshot

下载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 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
电子邮箱 [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"
        }
    ]
}