MeetBot

MeetBot

Joins your google meets automatically!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MeetBot",
  "version": "1.2",
  "description": "Joins your google meets automatically!",
  "icons": {
    "16": "icon16.png",
    "19": "icon19.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "author": "Keolailani Rose",
  "permissions": [
    "alarms",
    "tabs",
    "storage",
    "https://*/*",
    "http://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' http://localhost; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_popup": "mainpage.html",
    "default_icon": "icon48.png"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://meet.google.com/*"
    ],
    "accepts_tls_channel_id": false
  },
  "manifest_version": 2
}