Colab Notifier

Notifies you when longer running code cells are finished

Colab Notifier là gì?

Colab 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 longer running code cells are finished".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Colab 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

                        Are you training models on Google Colaboratory and you would like to get notification when your cells finished running? Use colab notifier!                    

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

Tên Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
URL Chính Thức https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
Mô tả Notifies you when longer running code cells are finished
Kích Thước Tệp 215 KB
Số Lần Cài Đặt 830
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2020-04-08
Ngày Phát Hành 2020-04-08
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
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/colab-notifier
URL Trang Trợ Giúp https://github.com/naraB/colab-notifier
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Colab Notifier",
    "description": "Notifies you when longer running code cells are finished",
    "version": "1.2",
    "permissions": [
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_title": "colab notifier"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": ".\/assets\/icons\/icon-16px.png",
        "48": ".\/assets\/icons\/icon-48px.png",
        "128": ".\/assets\/icons\/icon-128px.png"
    },
    "web_accessible_resources": [
        ".\/assets\/icons\/timer-24px.svg"
    ]
}