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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้าช่วยเหลือ https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
URL หน้านโยบายความเป็นส่วนตัว 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"
            ]
        }
    ]
}