Jupyter Coder

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

Что такое Jupyter Coder?

Jupyter Coder - это расширение Chrome, разработанное jupytercoder0765, и его основная функция - "Capture data in Jupyter Notebook cells and send to a remote server.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Jupyter Coder

Скачайте файлы расширений 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"
        }
    ]
}