Attendee

Attendee

The extensions aims to save the participants list on Microsoft Teams. Can be used to control the atendees on a meeting.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Attendee",
  "version": "1.0",
  "description": "The extensions aims to save the participants list on Microsoft Teams. Can be used to control the atendees on a meeting.",
  "permissions": [
    "downloads",
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/favicon-16x16.png",
      "32": "images/favicon-32x32.png",
      "48": "images/favicon-48x48.png",
      "64": "images/favicon-64x64.png",
      "96": "images/favicon-96x96.png",
      "128": "images/favicon-128x128.png"
    }
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "get-call.js"
  ]
}