Jupyter Notifier

Notifies you when code cells terminate.

Apa itu Jupyter Notifier?

Jupyter Notifier adalah ekstensi Chrome yang dikembangkan oleh baran yildirim, dan fitur utamanya adalah "Notifies you when code cells terminate.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Jupyter Notifier

Unduh file ekstensi Jupyter Notifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
URL Resmi https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Deskripsi Notifies you when code cells terminate.
Ukuran File 48.06 KB
Jumlah Instalasi 212
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2020-04-13
Tanggal Publikasi 2020-04-12
Pengembang baran yildirim
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/naraB/jupyter-notifier
URL Halaman Bantuan https://github.com/naraB/jupyter-notifier
Bahasa yang Didukung 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"
    }
}