Google Colab Keep-Alive

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

Co je Google Colab Keep-Alive?

Google Colab Keep-Alive je rozšíření Chrome vyvinuté v.snehith999, a jeho hlavní funkcí je „Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Google Colab Keep-Alive

Stáhněte si soubory rozšíření Google Colab Keep-Alive ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
Oficiální URL https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
Popis Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
Velikost souboru 2.03 MB
Počet instalací 521
Aktuální Verze 1.0
Poslední Aktualizace 2023-10-28
Datum Vydání 2023-10-28
Hodnocení 4.00/5 Celkem 2 Hodnocení
Vývojář v.snehith999
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.linkedin.com/in/snehitvaddi/
URL Stránky Nápovědy https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
URL Stránky Zásad Ochrany Soukromí https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
Podporované Jazyky 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"
            ]
        }
    ]
}