G-meet speaking time tracker.

G-meet speaking time tracker.

Tracks people speaking time in order to make the meeting more inclusive.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "G-meet speaking time tracker.",
  "version": "0.4.12",
  "description": "Tracks people speaking time in order to make the meeting more inclusive.",
  "manifest_version": 2,
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "permissions": [
    "clipboardWrite",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "contentscript.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "globalcontentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "img/128.png"
  }
}