Save Participants (Google Meet & MS Teams)

Save Participants (Google Meet & MS Teams)

This extensions allows to download the list of participants in a meeting in Microsoft Teams or Google Meet as a text file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save Participants (Google Meet & MS Teams)",
  "version": "2.7",
  "description": "This extensions allows to download the list of participants in a meeting in Microsoft Teams or Google Meet as a text file",
  "permissions": [
    "downloads",
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/particip_16.png",
      "32": "images/particip_32.png",
      "48": "images/particip_48.png",
      "128": "images/particip_128.png"
    }
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "get-call.js"
  ]
}