Colab Alive

Keep your Colab tabs alive with this nifty extension!

Colab Aliveคืออะไร?

Colab Alive เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rajtilak Indrajit และคุณลักษณะหลักของมันคือ "Keep your Colab tabs alive with this nifty extension!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Colab Alive

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}