GChat - Pin threads

GChat - Pin threads

Pin your threads to use another time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GChat - Pin threads",
  "description": "Pin your threads to use another time",
  "action": {
    "default_icon": "./images/logo.png",
    "default_popup": "./popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.google.com/*",
        "https://mail.google.com/chat/*"
      ],
      "all_frames": true,
      "js": [
        "./scripts/content.js"
      ],
      "css": [
        "./styles/styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "version": "1.0.5"
}