Colab Alive

Keep your Colab tabs alive with this nifty extension!

Colab Aliveとは何ですか?

Colab AliveはRajtilak Indrajitによって開発されたChromeの拡張機能で、その主な機能は「Keep your Colab tabs alive with this nifty extension!」です。

拡張機能のスクリーンショット

screenshot
screenshot

Colab Alive拡張機能のCRXファイルをダウンロード

Colab Alive拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        # 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
Eメール [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"
            ]
        }
    ]
}