Google Colab Keep-Alive

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

ما هو Google Colab Keep-Alive؟

Google Colab Keep-Alive هو إضافة Chrome تم تطويرها بواسطة v.snehith999، والميزة الرئيسية لها هي "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Google Colab Keep-Alive

قم بتنزيل ملفات الامتداد Google Colab Keep-Alive بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
الوصف Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
حجم الملف 2.03 MB
عدد التثبيتات 521
النسخة الحالية 1.0
آخر تحديث 2023-10-28
تاريخ النشر 2023-10-28
تقييم 4.00/5 مجموع تقييمات 2
المطور v.snehith999
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.linkedin.com/in/snehitvaddi/
عنوان صفحة المساعدة https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
عنوان صفحة سياسة الخصوصية https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
اللغات المدعومة 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"
            ]
        }
    ]
}