Colab Alive

Keep your Colab tabs alive with this nifty extension!

Colab Alive là gì?

Colab Alive là một tiện ích mở rộng Chrome được phát triển bởi Rajtilak Indrajit, và tính năng chính của nó là "Keep your Colab tabs alive with this nifty extension!".

Ả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 Alive

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

                        # Colab Alive - a chrome extension that keeps Colab notebooks alive. 

Updated to work with the latest Colab as of March 2021. Thanks to https://github.com/sobuj53 for the update!

How it works — a few lines of JS code are injected if you have a colab tab open and running even if you navigate away from the page.

Code credit: https://medium.com/@shivamrawat_756/how-to-prevent-google-colab-from-disconnecting-717b88a128c0

Rate the extension on Chrome webstore if you like it :)                    

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

Tên Colab Alive Colab Alive
ID eookkckfbbgnhdgcbfbicoahejkdoele
URL Chính Thức https://chromewebstore.google.com/detail/colab-alive/eookkckfbbgnhdgcbfbicoahejkdoele
Mô tả Keep your Colab tabs alive with this nifty extension!
Kích Thước Tệp 83.04 KB
Số Lần Cài Đặt 9,014
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2021-03-31
Ngày Phát Hành 2020-06-12
Đánh Giá 3.64/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Rajtilak Indrajit
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://github.com/rtindru/colabAlive
URL Trang Trợ Giúp https://github.com/rtindru/colabAlive
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colab Alive",
    "version": "1.3.1",
    "manifest_version": 2,
    "description": "Keep your Colab tabs alive with this nifty extension!",
    "homepage_url": "https:\/\/github.com\/rtindru",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": []
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}