Examine source code of ChromeSwitcher

Inspect and view changes in ChromeSwitcher 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": "ChromeSwitcher",
  "description": "Automagically redirect Google Docs/Sheets/Slides/Meet to the right Google account. Never 'Switch Accounts' again!",
  "version": "0.0.4",
  "manifest_version": 3,
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://accounts.google.com/*"
  ],
  "action": {
    "default_popup": "overlay.html",
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "48": "assets/icons/icon48.png",
      "128": "assets/icons/icon128.png"
    }
  }
}