Jupyter Notifier

Notifies you when code cells terminate.

Wat is Jupyter Notifier?

Jupyter Notifier is een Chrome-extensie ontwikkeld door baran yildirim, en de belangrijkste functie is "Notifies you when code cells terminate.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Jupyter Notifier

Download Jupyter Notifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
Officiële URL https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Beschrijving Notifies you when code cells terminate.
Bestandsgrootte 48.06 KB
Aantal Installaties 212
Huidige Versie 0.0.1
Laatst Bijgewerkt 2020-04-13
Publicatiedatum 2020-04-12
Ontwikkelaar baran yildirim
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/naraB/jupyter-notifier
Help Pagina-URL https://github.com/naraB/jupyter-notifier
Ondersteunde Talen 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"
    }
}