Jupyter Notifier

Notifies you when code cells terminate.

Jupyter Notifier là gì?

Jupyter Notifier là một tiện ích mở rộng Chrome được phát triển bởi baran yildirim, và tính năng chính của nó là "Notifies you when code cells terminate.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jupyter Notifier

Tải xuống các tệp mở rộng Jupyter Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
URL Chính Thức https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
Mô tả Notifies you when code cells terminate.
Kích Thước Tệp 48.06 KB
Số Lần Cài Đặt 212
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-04-13
Ngày Phát Hành 2020-04-12
Nhà Phát Triển baran yildirim
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/naraB/jupyter-notifier
URL Trang Trợ Giúp https://github.com/naraB/jupyter-notifier
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}