Google Meets Attendance Names

Google Meets Attendance Names

Reverses the order of names in the participants list in Google Meets!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Meets Attendance Names",
  "version": "1.3",
  "description": "Reverses the order of names in the participants list in Google Meets!",
  "permissions": [],
  "page_action": {
    "default_icon": {
      "16": "images/googlemeet16.png",
      "32": "images/googlemeet32.png",
      "48": "images/googlemeet48.png",
      "128": "images/googlemeet128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "reverseNames.js"
      ]
    }
  ],
  "icons": {
    "16": "images/googlemeet16.png",
    "32": "images/googlemeet32.png",
    "48": "images/googlemeet48.png",
    "128": "images/googlemeet128.png"
  },
  "manifest_version": 2
}