Chat Thread Getchu

Chat Thread Getchu

You will be able to get thread links for chat

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "2.0.0",
  "default_locale": "en",
  "icons": {
    "128": "icon/icon.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://chat.google.com/**",
        "https://chat.google.com/**",
        "http://mail.google.com/chat/**",
        "https://mail.google.com/chat/**"
      ],
      "js": [
        "./js/main.bundle.js"
      ],
      "all_frames": true
    }
  ]
}