NewMeet

NewMeet

Just install and monitor your GoogleMeet participants.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NewMeet",
  "version": "2.27",
  "description": "Just install and monitor your GoogleMeet participants.",
  "icons": {
    "48": "meetLogo.png"
  },
  "permissions": [
    "downloads",
    "downloads.open"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "studentScraper.js"
      ]
    }
  ]
}