Abort Meet

Abort Meet

It's really embarassing when everybody in the online class leaves the meet and you remain there idle since you weren't actually…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "AM",
  "name": "Abort Meet",
  "version": "0.4",
  "manifest_version": 2,
  "icons": {
    "256": "abort.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "app/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/static/*/*"
  ]
}