Jupyter Notifier

Notifies you when code cells terminate.

什么是Jupyter Notifier?

Jupyter Notifier是由baran yildirim开发的Chrome扩展程序,该扩展的主要功能是“Notifies you when code cells terminate.”。

扩展截图

screenshot
screenshot
screenshot

下载Jupyter Notifier扩展crx文件

下载Jupyter Notifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
官方URL https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
简介 Notifies you when code cells terminate.
文件大小 48.06 KB
安装次数 212
当前版本 0.0.1
更新时间 2020-04-13
上架时间 2020-04-12
开发者 baran yildirim
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/naraB/jupyter-notifier
帮助页面URL https://github.com/naraB/jupyter-notifier
支持的语言 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"
    }
}