Jupyter Notifier

Notifies you when code cells terminate.

Vad är Jupyter Notifier?

Jupyter Notifier är en Chrome-tillägg utvecklad av baran yildirim, och dess huvudfunktion är "Notifies you when code cells terminate.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Jupyter Notifier-förlängningens CRX-fil

Ladda ner Jupyter Notifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
Officiell webbadress https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Beskrivning Notifies you when code cells terminate.
Filstorlek 48.06 KB
Antal Installationer 212
Aktuell Version 0.0.1
Senast Uppdaterad 2020-04-13
Publiceringsdatum 2020-04-12
Utvecklare baran yildirim
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/naraB/jupyter-notifier
Hjälpsida URL https://github.com/naraB/jupyter-notifier
Stödda Språk 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"
    }
}