Google Colab Keep-Alive

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

What is Google Colab Keep-Alive?

Google Colab Keep-Alive is a Chrome extension developed by v.snehith999, and its main feature is "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.".

Extension Screenshots

screenshot
screenshot

Download Google Colab Keep-Alive Extension CRX File

Download Google Colab Keep-Alive extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
Official URL https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
Description Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
File Size 2.03 MB
Installation Count 521
Current Version 1.0
Last Updated 2023-10-28
Publish Date 2023-10-28
Rating 4.00/5 Total 2 Ratings
Developer v.snehith999
Email [email protected]
Payment Type free
Extension Website https://www.linkedin.com/in/snehitvaddi/
Help Page URL https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
Privacy Policy Page URL https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
Supported Languages 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"
            ]
        }
    ]
}