Jupyter Notifier

Notifies you when code cells terminate.

Co je Jupyter Notifier?

Jupyter Notifier je rozšíření Chrome vyvinuté baran yildirim, a jeho hlavní funkcí je „Notifies you when code cells terminate.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Jupyter Notifier

Stáhněte si soubory rozšíření Jupyter Notifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
Oficiální URL https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Popis Notifies you when code cells terminate.
Velikost souboru 48.06 KB
Počet instalací 212
Aktuální Verze 0.0.1
Poslední Aktualizace 2020-04-13
Datum Vydání 2020-04-12
Vývojář baran yildirim
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/naraB/jupyter-notifier
URL Stránky Nápovědy https://github.com/naraB/jupyter-notifier
Podporované Jazyky 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"
    }
}