Google Colab Keep-Alive

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

Vad är Google Colab Keep-Alive?

Google Colab Keep-Alive är en Chrome-tillägg utvecklad av v.snehith999, och dess huvudfunktion är "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Google Colab Keep-Alive-förlängningens CRX-fil

Ladda ner Google Colab Keep-Alive-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
Officiell webbadress https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
Beskrivning Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
Filstorlek 2.03 MB
Antal Installationer 521
Aktuell Version 1.0
Senast Uppdaterad 2023-10-28
Publiceringsdatum 2023-10-28
Betyg 4.00/5 Totalt 2 Betyg
Utvecklare v.snehith999
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.linkedin.com/in/snehitvaddi/
Hjälpsida URL https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
URL till Sekretesspolicy Sidan https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
Stödda Språk 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"
            ]
        }
    ]
}