Google Meetの録画忘れ防止くん

Google Meetの録画忘れ防止くん

Google Meetに参加したときに録画をするように促します

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Meetの録画忘れ防止くん",
  "version": "1.0.1",
  "minimum_chrome_version": "88.0",
  "icons": {},
  "description": "Google Meetに参加したときに録画をするように促します",
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 3
}