Jupyter Notifier

Notifies you when code cells terminate.

¿Qué es Jupyter Notifier?

Jupyter Notifier es una extensión de Chrome desarrollada por baran yildirim, y su función principal es "Notifies you when code cells terminate.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Jupyter Notifier

Descarga archivos de extensión Jupyter Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
URL Oficial https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Descripción Notifies you when code cells terminate.
Tamaño del Archivo 48.06 KB
Cantidad de Instalaciones 212
Versión Actual 0.0.1
Última Actualización 2020-04-13
Fecha de Publicación 2020-04-12
Desarrollador baran yildirim
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/naraB/jupyter-notifier
URL de la Página de Ayuda https://github.com/naraB/jupyter-notifier
Idiomas Soportados 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"
    }
}