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
官方網址 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"
    }
}