Google Colab Keep-Alive

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

Apa itu Google Colab Keep-Alive?

Google Colab Keep-Alive adalah ekstensi Chrome yang dikembangkan oleh v.snehith999, dan fitur utamanya adalah "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Google Colab Keep-Alive

Unduh file ekstensi Google Colab Keep-Alive dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
URL Resmi https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
Deskripsi Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
Ukuran File 2.03 MB
Jumlah Instalasi 521
Versi Saat Ini 1.0
Terakhir Diperbarui 2023-10-28
Tanggal Publikasi 2023-10-28
Penilaian 4.00/5 Total 2 Penilaian
Pengembang v.snehith999
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.linkedin.com/in/snehitvaddi/
URL Halaman Bantuan https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
URL Halaman Kebijakan Privasi https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
Bahasa yang Didukung 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"
            ]
        }
    ]
}