Tweaks for Google Chat

Tweaks for Google Chat

Works with latest Chat. Adds button to messages to quote reply for legacy, threaded chat rooms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tweaks for Google Chat",
  "description": "Works with latest Chat. Adds button to messages to quote reply for legacy, threaded chat rooms.",
  "version": "1.0.4",
  "content_scripts": [
    {
      "matches": [
        "https://chat.google.com/*",
        "https://mail.google.com/chat/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}