Colab Alive

Keep your Colab tabs alive with this nifty extension!

Was ist Colab Alive?

Colab Alive ist eine Chrome-Erweiterung, die von Rajtilak Indrajit entwickelt wurde, und ihr Hauptmerkmal ist "Keep your Colab tabs alive with this nifty extension!".

Erweiterungsscreenshots

screenshot
screenshot

Colab Alive-Erweiterungs-CRX-Datei herunterladen

Laden Sie Colab Alive-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        # 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 :)                    

Grundlegende Informationen zur Erweiterung

Name Colab Alive Colab Alive
ID eookkckfbbgnhdgcbfbicoahejkdoele
Offizielle URL https://chromewebstore.google.com/detail/colab-alive/eookkckfbbgnhdgcbfbicoahejkdoele
Beschreibung Keep your Colab tabs alive with this nifty extension!
Dateigröße 83.04 KB
Installationsanzahl 9,014
Aktuelle Version 1.3.1
Letztes Update 2021-03-31
Veröffentlichungsdatum 2020-06-12
Bewertung 3.64/5 Insgesamt 11 Bewertungen
Entwickler Rajtilak Indrajit
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite https://github.com/rtindru/colabAlive
Hilfeseite URL https://github.com/rtindru/colabAlive
Unterstützte Sprachen 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"
            ]
        }
    ]
}