Cuckoo - Log Google Meet Chat Messages

Cuckoo - Log Google Meet Chat Messages

Transmit chat messages on Google Meet to a Slack channel automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_short_name__",
  "version": "0.2.0",
  "manifest_version": 3,
  "description": "__MSG_extension_description__",
  "homepage_url": "https://github.com/noraworld/cuckoo",
  "default_locale": "en",
  "icons": {
    "16": "img/logo16x16.png",
    "48": "img/logo48x48.png",
    "128": "img/logo128x128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://slack.com/*"
  ],
  "action": {
    "default_title": "__MSG_extension_name__",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "js/constant.js",
        "js/script.js"
      ],
      "all_frames": true
    }
  ]
}