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 v.snehith999 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Colab Keep-Alive एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/
सहायता पृष्ठ 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"
            ]
        }
    ]
}