Google Meet Randomizer

Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Meet Randomizer",
  "version": "2.2.3",
  "description": "Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/content-e0a4c960.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ],
  "icons": {
    "48": "icon.png",
    "128": "large-icon.png"
  },
  "web_accessible_resources": [
    "content.js"
  ]
}