TeamsTools

TeamsTools

Automating Microsoft Teams in a useful way.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TeamsTools",
  "version": "0.4.1",
  "author": [
    {
      "name": "dikahdoff",
      "email": "[email protected]"
    }
  ],
  "homepage_url": "https://github.com/dikahdoff/TeamsTools",
  "description": "Automating Microsoft Teams in a useful way.",
  "icons": {
    "64": "icon-64.png",
    "128": "icon-128.png",
    "1200": "icon-full.png"
  },
  "action": {
    "default_title": "TeamsTools",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://teams.microsoft.com/*",
    "*://teams.live.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://teams.microsoft.com/*",
        "*://teams.live.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}