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
官方網址 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"
        }
    ]
}