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
Eメール [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"
    }
}