Google Chat Thread Switcher

Google Chat Thread Switcher

Google Chat Extension to add a Thread Switcher

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Chat Thread Switcher",
  "description": "Google Chat Extension to add a Thread Switcher",
  "version": "1.2.0",
  "homepage_url": "https://github.com/itagagaki/Google-Chat-Thread-Switcher",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://chat.google.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "./thread-switcher.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*.google.com/*"
  ]
}