Google Colab Keep-Alive

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

什么是Google Colab Keep-Alive?

Google Colab Keep-Alive是由v.snehith999开发的Chrome扩展程序,该扩展的主要功能是“Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.”。

扩展截图

screenshot
screenshot

下载Google Colab Keep-Alive扩展crx文件

下载Google Colab Keep-Alive扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
官方URL https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
简介 Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
文件大小 2.03 MB
安装次数 521
当前版本 1.0
更新时间 2023-10-28
上架时间 2023-10-28
评分 4.00/5 共2次评分
开发者 v.snehith999
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.linkedin.com/in/snehitvaddi/
帮助页面URL https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
隐私政策页面URL https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
支持的语言 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"
            ]
        }
    ]
}