Jupyter Coder

Capture data in Jupyter Notebook cells and send to a remote server.

Jupyter Coder là gì?

Jupyter Coder là một tiện ích mở rộng Chrome được phát triển bởi jupytercoder0765, và tính năng chính của nó là "Capture data in Jupyter Notebook cells and send to a remote server.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jupyter Coder

Tải xuống các tệp mở rộng Jupyter Coder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 !                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Jupyter Coder Jupyter Coder
ID kbedojkmlknhepcaggkdimefcbiifkjf
URL Chính Thức https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf
Mô tả Capture data in Jupyter Notebook cells and send to a remote server.
Kích Thước Tệp 649 KB
Số Lần Cài Đặt 232
Phiên Bản Hiện Tại 0.2.0.0
Cập Nhật Lần Cuối 2023-06-12
Ngày Phát Hành 2023-04-26
Nhà Phát Triển jupytercoder0765
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}