Colab Alive

Keep your Colab tabs alive with this nifty extension!

Qu'est-ce que Colab Alive ?

Colab Alive est une extension Chrome développée par Rajtilak Indrajit, et sa fonction principale est "Keep your Colab tabs alive with this nifty extension!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Colab Alive

Téléchargez les fichiers d'extension Colab Alive au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Colab Alive Colab Alive
ID eookkckfbbgnhdgcbfbicoahejkdoele
URL Officiel https://chromewebstore.google.com/detail/colab-alive/eookkckfbbgnhdgcbfbicoahejkdoele
Description Keep your Colab tabs alive with this nifty extension!
Taille du Fichier 83.04 KB
Nombre d'Installations 9,014
Version Actuelle 1.3.1
Dernière Mise à Jour 2021-03-31
Date de Publication 2020-06-12
Évaluation 3.64/5 Total 11 Évaluations
Développeur Rajtilak Indrajit
Email [email protected]
Type de Paiement in_app
Site Web de l'Extension https://github.com/rtindru/colabAlive
URL de la Page d'Aide https://github.com/rtindru/colabAlive
Langues Prises en Charge 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"
            ]
        }
    ]
}