Colab Auto Reconnect

Tool to prevent unexpected disconnect

Colab Auto Reconnect là gì?

Colab Auto Reconnect là một tiện ích mở rộng Chrome được phát triển bởi charlie890414, và tính năng chính của nó là "Tool to prevent unexpected disconnect".

Ả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 Auto Reconnect

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

                        A tool to automatically reconnect Google's Colab without clicking the button.                    

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

Tên Colab Auto Reconnect Colab Auto Reconnect
ID ifilpgffgdbhafnaebocnofaehicbkem
URL Chính Thức https://chromewebstore.google.com/detail/colab-auto-reconnect/ifilpgffgdbhafnaebocnofaehicbkem
Mô tả Tool to prevent unexpected disconnect
Kích Thước Tệp 9.28 KB
Số Lần Cài Đặt 2,613
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-01-02
Ngày Phát Hành 2020-01-01
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển charlie890414
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/charlie890414/Colab-Auto-Reconnect
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colab Auto Reconnect",
    "version": "1.0",
    "description": "Tool to prevent unexpected disconnect",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/drive\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "js\/script.js"
    ],
    "icons": {
        "512": "images\/icon.png"
    },
    "manifest_version": 2
}