Jupyter Notifier

Notifies you when code cells terminate.

Was ist Jupyter Notifier?

Jupyter Notifier ist eine Chrome-Erweiterung, die von baran yildirim entwickelt wurde, und ihr Hauptmerkmal ist "Notifies you when code cells terminate.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Jupyter Notifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie Jupyter Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
Offizielle URL https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Beschreibung Notifies you when code cells terminate.
Dateigröße 48.06 KB
Installationsanzahl 212
Aktuelle Version 0.0.1
Letztes Update 2020-04-13
Veröffentlichungsdatum 2020-04-12
Entwickler baran yildirim
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/naraB/jupyter-notifier
Hilfeseite URL https://github.com/naraB/jupyter-notifier
Unterstützte Sprachen 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"
    }
}