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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}