Colab Alive

Keep your Colab tabs alive with this nifty extension!

¿Qué es Colab Alive?

Colab Alive es una extensión de Chrome desarrollada por Rajtilak Indrajit, y su función principal es "Keep your Colab tabs alive with this nifty extension!".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Colab Alive

Descarga archivos de extensión Colab Alive en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Colab Alive Colab Alive
ID eookkckfbbgnhdgcbfbicoahejkdoele
URL Oficial https://chromewebstore.google.com/detail/colab-alive/eookkckfbbgnhdgcbfbicoahejkdoele
Descripción Keep your Colab tabs alive with this nifty extension!
Tamaño del Archivo 83.04 KB
Cantidad de Instalaciones 9,014
Versión Actual 1.3.1
Última Actualización 2021-03-31
Fecha de Publicación 2020-06-12
Calificación 3.64/5 Total de 11 Calificaciones
Desarrollador Rajtilak Indrajit
Correo electrónico [email protected]
Tipo de Pago in_app
Sitio Web de la Extensión https://github.com/rtindru/colabAlive
URL de la Página de Ayuda https://github.com/rtindru/colabAlive
Idiomas Soportados 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"
            ]
        }
    ]
}