Colab Alive

Keep your Colab tabs alive with this nifty extension!

Colab Alive क्या है?

Colab Alive Rajtilak Indrajit द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keep your Colab tabs alive with this nifty extension!"।

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

screenshot
screenshot

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

crx प्रारूप में Colab Alive एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        # Colab Alive - a chrome extension that keeps Colab notebooks alive. 

Updated to work with the latest Colab as of March 2021. Thanks to https://github.com/sobuj53 for the update!

How it works — a few lines of JS code are injected if you have a colab tab open and running even if you navigate away from the page.

Code credit: https://medium.com/@shivamrawat_756/how-to-prevent-google-colab-from-disconnecting-717b88a128c0

Rate the extension on Chrome webstore if you like it :)                    

एक्सटेंशन की मूल जानकारी

नाम Colab Alive Colab Alive
ID eookkckfbbgnhdgcbfbicoahejkdoele
आधिकारिक URL https://chromewebstore.google.com/detail/colab-alive/eookkckfbbgnhdgcbfbicoahejkdoele
विवरण Keep your Colab tabs alive with this nifty extension!
फ़ाइल का आकार 83.04 KB
स्थापना संख्या 9,014
वर्तमान संस्करण 1.3.1
अंतिम अपडेट 2021-03-31
प्रकाशन तिथि 2020-06-12
रेटिंग 3.64/5 कुल 11 रेटिंग्स
डेवलपर Rajtilak Indrajit
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://github.com/rtindru/colabAlive
सहायता पृष्ठ URL https://github.com/rtindru/colabAlive
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colab Alive",
    "version": "1.3.1",
    "manifest_version": 2,
    "description": "Keep your Colab tabs alive with this nifty extension!",
    "homepage_url": "https:\/\/github.com\/rtindru",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": []
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}