GChat copy thread link & quote reply

GChat copy thread link & quote reply

Add button to copy link to thread and add button to messages to quote reply on Google Chat

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GChat copy thread link & quote reply",
  "description": "Add button to copy link to thread and add button to messages to quote reply on Google Chat",
  "version": "1.2",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://chat.google.com/*",
        "https://mail.google.com/chat/*"
      ],
      "all_frames": true,
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ]
}