Google Chat My Favorites

Google Chat My Favorites

Adds button to add the topics to your favorites list on Google Chat

Merlin
Additional files are visible only to premium users

manifest.json


{
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "style.js",
        "constants.js",
        "utils.js",
        "content.js"
      ],
      "matches": [
        "https://chat.google.com/*",
        "https://mail.google.com/chat/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "description": "Adds button to add the topics to your favorites list on Google Chat",
  "manifest_version": 3,
  "name": "Google Chat My Favorites",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.4"
}