Examine source code of Colab Themes

Inspect and view changes in Colab Themes source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Colab Themes",
  "description": "Changes the appearance of Google Colab!",
  "version": "1.1.0",
  "manifest_version": 3,
  "permissions": [
    "scripting",
    "storage"
  ],
  "action": {
    "default_title": "Themes for Google Colab",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://colab.research.google.com/*",
        "*://*.googleusercontent.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "host_permissions": [
    "https://colab.research.google.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "themes/*.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "icons/favicon16.png",
    "32": "icons/favicon32.png",
    "96": "icons/favicon96.png",
    "128": "icons/favicon128.png"
  }
}