Jupyter Notifier

Notifies you when code cells terminate.

Что такое Jupyter Notifier?

Jupyter Notifier - это расширение Chrome, разработанное baran yildirim, и его основная функция - "Notifies you when code cells terminate.".

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

screenshot
screenshot
screenshot

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

Скачайте файлы расширений Jupyter Notifier в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        On every Jupyter Notebook environment, Jupyter Notifier notifies you with a sound, a message, or both when code cells terminate. Jupyter Notifier injects a bell icon into your notebook, which allows you to select specific cells for notification.

With Jupyter Notifier, you won't be repeatedly checking whether your cell has terminated.                    

Основная информация о расширении

Название Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
Официальный URL https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Описание Notifies you when code cells terminate.
Размер файла 48.06 KB
Количество установок 212
Текущая Версия 0.0.1
Последнее Обновление 2020-04-13
Дата публикации 2020-04-12
Разработчик baran yildirim
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/naraB/jupyter-notifier
URL страницы помощи https://github.com/naraB/jupyter-notifier
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jupyter Notifier",
    "description": "Notifies you when code cells terminate.",
    "version": "0.0.1",
    "permissions": [
        "storage",
        "notifications"
    ],
    "web_accessible_resources": [
        "assets\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_title": "jupyter notifier"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": ".\/assets\/icons\/bell-48px.png",
        "48": ".\/assets\/icons\/bell-48px.png",
        "128": ".\/assets\/icons\/bell-128px.png"
    }
}