Jupyter Notifier

Notifies you when code cells terminate.

Jupyter Notifierคืออะไร?

Jupyter Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย baran yildirim และคุณลักษณะหลักของมันคือ "Notifies you when code cells terminate."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jupyter Notifier

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}