Jupyter Coder

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

Co to jest Jupyter Coder?

Jupyter Coder to rozszerzenie Chrome opracowane przez jupytercoder0765, a jego główną funkcją jest „Capture data in Jupyter Notebook cells and send to a remote server.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Jupyter Coder

Pobierz pliki rozszerzeń Jupyter Coder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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 !                    

Podstawowe informacje o rozszerzeniu

Nazwa Jupyter Coder Jupyter Coder
ID kbedojkmlknhepcaggkdimefcbiifkjf
Oficjalny URL https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf
Opis Capture data in Jupyter Notebook cells and send to a remote server.
Rozmiar pliku 649 KB
Liczba instalacji 232
Aktualna Wersja 0.2.0.0
Ostatnia Aktualizacja 2023-06-12
Data Publikacji 2023-04-26
Deweloper jupytercoder0765
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}