Jupyter Notifier

Notifies you when code cells terminate.

Hvad er Jupyter Notifier?

Jupyter Notifier er en Chrome-udvidelse udviklet af baran yildirim, og dens hovedfunktion er "Notifies you when code cells terminate.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Jupyter Notifier-udvidelses-CRX-fil

Download Jupyter Notifier-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
Officiel URL https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Beskrivelse Notifies you when code cells terminate.
Filstørrelse 48.06 KB
Antal Installationer 212
Nuværende Version 0.0.1
Senest Opdateret 2020-04-13
Udgivelsesdato 2020-04-12
Udvikler baran yildirim
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/naraB/jupyter-notifier
Hjælpeside-URL https://github.com/naraB/jupyter-notifier
Understøttede Sprog 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"
    }
}