Jupyter Notifier

Notifies you when code cells terminate.

Cos'è Jupyter Notifier?

Jupyter Notifier è un'estensione di Chrome sviluppata da baran yildirim, e la sua funzione principale è "Notifies you when code cells terminate.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Jupyter Notifier

Scarica i file di estensione Jupyter Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
URL Ufficiale https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Descrizione Notifies you when code cells terminate.
Dimensione del File 48.06 KB
Conteggio Installazioni 212
Versione Corrente 0.0.1
Ultimo Aggiornamento 2020-04-13
Data di Pubblicazione 2020-04-12
Sviluppatore baran yildirim
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/naraB/jupyter-notifier
URL della Pagina di Aiuto https://github.com/naraB/jupyter-notifier
Lingue Supportate 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"
    }
}