Colab Auto Reconnect

Automatically reconnects to Colab's ongoing session without manually clicking.

Colab Auto Reconnectคืออะไร?

Colab Auto Reconnect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zohebabai และคุณลักษณะหลักของมันคือ "Automatically reconnects to Colab's ongoing session without manually clicking."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Colab Auto Reconnect ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Are you a budding Data Scientist?

Love to use free resources?

Require GPU for your Deep Learning projects?

If 'Yes', then you must be using Google Colab Jupyter Notebook with free GPU and TPU services. And if you are an admirer of Colab (like me), then you must be depending a lot on Colab Notebooks.

Everything's Good about Colab, except one thing. It gets disconnected a lot and you need to manually click the button to reconnect continue running the session. This is annoying for a data scientist, as you would not prefer to babysit your training sessions for 12 hours. So this chrome extension CoAuRe comes to your rescue.

Colab Auto Reconnect

1. Automatically reconnects your ongoing session whenever it gets disconnected without any manual intervention. Now you can go for a good night's sleep without bothering about your Colab session getting disconnected for the next 12 hours.
2. Comes with an inbuilt timer, which can be used for getting notified (Alert with Sound) when your task gets over, especially at the end of your Model Training on Colab.

If this free chrome extension helped you, then please give good ratings at Chrome Web Store.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Colab Auto Reconnect Colab Auto Reconnect
ID nbcihfbfamjlfiopdcemmohoojdecjid
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/colab-auto-reconnect/nbcihfbfamjlfiopdcemmohoojdecjid
คำอธิบาย Automatically reconnects to Colab's ongoing session without manually clicking.
ขนาดไฟล์ 159 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2020-07-10
วันที่เผยแพร่ 2020-07-03
คะแนน 2.35/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา zohebabai
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://zohebabai.github.io/Colab_Auto_Reconnect/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colab Auto Reconnect",
    "version": "1.1.0",
    "description": "Automatically reconnects to Colab's ongoing session without manually clicking.",
    "author": "Zoheb Abai",
    "short_name": "CoAuRe",
    "incognito": "split",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/colab.research.google.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "*:\/\/colab.research.google.com\/*",
        "background",
        "alarms",
        "storage",
        "notifications"
    ],
    "icons": {
        "16": "Images\/colab_reconnect16.png",
        "32": "Images\/colab_reconnect32.png",
        "64": "Images\/colab_reconnect64.png",
        "128": "Images\/colab_reconnect128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "Images\/colab_reconnect16.png"
        },
        "default_popup": "popup_startpage.html"
    },
    "options_page": "options.html"
}