Google Meet Random Picker

Google Meet Random Picker

Google Meet Random Picker is a chrome extension which adds a random button to the google meet webpage, allowing users to pick…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Meet Random Picker",
  "version": "1.0",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "css": [
        "/static/css/app.css",
        "/static/css/content.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ]
}