Google Colab Keep-Alive

Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.

Google Colab Keep-Alive là gì?

Google Colab Keep-Alive là một tiện ích mở rộng Chrome được phát triển bởi v.snehith999, và tính năng chính của nó là "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.".

Ả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 Google Colab Keep-Alive

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

                        Automatically clicks on the web page every few seconds to keep sessions active. Perfect for platforms that time out due to inactivity.                    

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

Tên Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
URL Chính Thức https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
Mô tả Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
Kích Thước Tệp 2.03 MB
Số Lần Cài Đặt 521
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-10-28
Ngày Phát Hành 2023-10-28
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển v.snehith999
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.linkedin.com/in/snehitvaddi/
URL Trang Trợ Giúp https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Colab Keep-Alive",
    "version": "1.0",
    "description": "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16-2.png"
        }
    },
    "permissions": [
        "activeTab",
        "notifications"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ]
        }
    ]
}