Colab Auto Reconnect

Tool to prevent unexpected disconnect

What is Colab Auto Reconnect?

Colab Auto Reconnect is a Chrome extension developed by charlie890414, and its main feature is "Tool to prevent unexpected disconnect".

Extension Screenshots

screenshot
screenshot

Download Colab Auto Reconnect Extension CRX File

Download Colab Auto Reconnect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A tool to automatically reconnect Google's Colab without clicking the button.                    

Extension Basic Information

Name Colab Auto Reconnect Colab Auto Reconnect
ID ifilpgffgdbhafnaebocnofaehicbkem
Official URL https://chromewebstore.google.com/detail/colab-auto-reconnect/ifilpgffgdbhafnaebocnofaehicbkem
Description Tool to prevent unexpected disconnect
File Size 9.28 KB
Installation Count 2,613
Current Version 1.0
Last Updated 2020-01-02
Publish Date 2020-01-01
Rating 3.00/5 Total 2 Ratings
Developer charlie890414
Payment Type free
Help Page URL https://github.com/charlie890414/Colab-Auto-Reconnect
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colab Auto Reconnect",
    "version": "1.0",
    "description": "Tool to prevent unexpected disconnect",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/drive\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "js\/script.js"
    ],
    "icons": {
        "512": "images\/icon.png"
    },
    "manifest_version": 2
}