Google Colab Keep-Alive

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

Co to jest Google Colab Keep-Alive?

Google Colab Keep-Alive to rozszerzenie Chrome opracowane przez v.snehith999, a jego główną funkcją jest „Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Google Colab Keep-Alive

Pobierz pliki rozszerzeń Google Colab Keep-Alive w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
Oficjalny URL https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
Opis Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
Rozmiar pliku 2.03 MB
Liczba instalacji 521
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-10-28
Data Publikacji 2023-10-28
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper v.snehith999
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.linkedin.com/in/snehitvaddi/
Adres URL Strony Pomocy https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
Adres URL Strony Polityki Prywatności https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
Obsługiwane Języki 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"
            ]
        }
    ]
}