Talk Time for Google Meet

Talk Time for Google Meet

Track and display the talk time and percent of talking time for each participant in a Google Meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Track and display the talk time and percent of talking time for each participant in a Google Meet",
  "manifest_version": 2,
  "name": "Talk Time for Google Meet",
  "author": "Matt Kruse",
  "version": "3.1",
  "homepage_url": "https://EveryoneShouldHaveAVoice.com/",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "storage",
    "https://meet.google.com/*",
    "https://EveryoneShouldHaveAVoice.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "resources/*.png"
  ]
}