Jupyter Notifier

Notifies you when code cells terminate.

What is Jupyter Notifier?

Jupyter Notifier is a Chrome extension developed by baran yildirim, and its main feature is "Notifies you when code cells terminate.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Jupyter Notifier Extension CRX File

Download Jupyter Notifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
Official URL https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Description Notifies you when code cells terminate.
File Size 48.06 KB
Installation Count 212
Current Version 0.0.1
Last Updated 2020-04-13
Publish Date 2020-04-12
Developer baran yildirim
Email [email protected]
Payment Type free
Extension Website https://github.com/naraB/jupyter-notifier
Help Page URL https://github.com/naraB/jupyter-notifier
Supported Languages 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"
    }
}