Meet Record Reminder

Meet Record Reminder

Reminds to start recording of the meeting

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Meet Record Reminder",
  "version": "1.0",
  "description": "Reminds to start recording of the meeting",
  "author": "Uliana Sirotina <[email protected]>",
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "manifest_version": 3
}