Jupyter Coder

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

Apa itu Jupyter Coder?

Jupyter Coder adalah ekstensi Chrome yang dikembangkan oleh jupytercoder0765, dan fitur utamanya adalah "Capture data in Jupyter Notebook cells and send to a remote server.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Jupyter Coder

Unduh file ekstensi Jupyter Coder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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 !                    

Informasi Dasar Ekstensi

Nama Jupyter Coder Jupyter Coder
ID kbedojkmlknhepcaggkdimefcbiifkjf
URL Resmi https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf
Deskripsi Capture data in Jupyter Notebook cells and send to a remote server.
Ukuran File 649 KB
Jumlah Instalasi 232
Versi Saat Ini 0.2.0.0
Terakhir Diperbarui 2023-06-12
Tanggal Publikasi 2023-04-26
Pengembang jupytercoder0765
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}