MS Bot

MS Bot

This extension will help to automate the process of attending live sessions in MS Teams.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MS Bot",
  "description": "This extension will help to automate the process of attending live sessions in MS Teams.",
  "version": "0.3",
  "icons": {
    "64": "images/bot-64.png",
    "128": "images/bot-128.png",
    "256": "images/bot-256.png",
    "512": "images/bot-512.png"
  },
  "browser_action": {
    "default_icon": "images/bot-256.png",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.js",
        "js/script.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'"
}