Jupyter Notifier

Notifies you when code cells terminate.

Co to jest Jupyter Notifier?

Jupyter Notifier to rozszerzenie Chrome opracowane przez baran yildirim, a jego główną funkcją jest „Notifies you when code cells terminate.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Jupyter Notifier

Pobierz pliki rozszerzeń Jupyter Notifier 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
Oficjalny URL https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Opis Notifies you when code cells terminate.
Rozmiar pliku 48.06 KB
Liczba instalacji 212
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2020-04-13
Data Publikacji 2020-04-12
Deweloper baran yildirim
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/naraB/jupyter-notifier
Adres URL Strony Pomocy https://github.com/naraB/jupyter-notifier
Obsługiwane Języki 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"
    }
}