Google Meet - Don't forget to record ribbon

Google Meet - Don't forget to record ribbon

Adds a ribbon on the top-left side of Meet to remind organizers to start the recording. Click on the ribbon to hide it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Meet - Don't forget to record ribbon",
  "description": "Adds a ribbon on the top-left side of Meet to remind organizers to start the recording. Click on the ribbon to hide it.",
  "version": "1.0",
  "icons": {
    "300": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "./google-meet-dont-forget-to-record-ribbon.user.js"
      ]
    }
  ]
}