Colab Auto Reconnect

Colab Auto Reconnect

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Colab Auto Reconnect",
  "version": "1.1.1",
  "description": "Automatically reconnects to Colab's ongoing session without manually clicking.",
  "author": "Zoheb Abai",
  "short_name": "CoAuRe",
  "incognito": "spanning",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://colab.research.google.com/*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "*://colab.research.google.com/*"
  ],
  "icons": {
    "16": "icons/coaure_off_16.png",
    "32": "icons/coaure_off_32.png",
    "48": "icons/coaure_off_48.png",
    "64": "icons/coaure_off_64.png",
    "128": "icons/coaure_off_128.png"
  },
  "browser_action": {
    "default_title": "Colab Auto Reconnect",
    "default_icon": {
      "16": "icons/coaure_off_16.png",
      "32": "icons/coaure_off_32.png",
      "48": "icons/coaure_off_48.png",
      "64": "icons/coaure_off_64.png",
      "128": "icons/coaure_off_128.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}