Colab Auto Reconnect

Tool to prevent unexpected disconnect

什么是Colab Auto Reconnect?

Colab Auto Reconnect是由charlie890414开发的Chrome扩展程序,该扩展的主要功能是“Tool to prevent unexpected disconnect”。

扩展截图

screenshot
screenshot

下载Colab Auto Reconnect扩展crx文件

下载Colab Auto Reconnect扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Colab Auto Reconnect Colab Auto Reconnect
ID ifilpgffgdbhafnaebocnofaehicbkem
官方URL https://chromewebstore.google.com/detail/colab-auto-reconnect/ifilpgffgdbhafnaebocnofaehicbkem
简介 Tool to prevent unexpected disconnect
文件大小 9.28 KB
安装次数 2,613
当前版本 1.0
更新时间 2020-01-02
上架时间 2020-01-01
评分 3.00/5 共2次评分
开发者 charlie890414
付费类型 free
帮助页面URL https://github.com/charlie890414/Colab-Auto-Reconnect
支持的语言 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
}