Google Chat Pin thread & quote reply

Google Chat Pin thread & quote reply

Add more utilities for google chat, pin thread and quote reply

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Google Chat Pin thread & quote reply",
  "description": "Add more utilities for google chat, pin thread and quote reply",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {},
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://chat.google.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ],
      "all_frames": true
    }
  ],
  "update_url": "https://clients2.google.com/service/update2/crx"
}