Colab Alive

Colab Alive

Keep your Colab tabs alive with this nifty extension!

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}