Call Timer for Meet

Call Timer for Meet

This extension add a timer in your Meet calls.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Call Timer for Meet",
  "version": "3.0.1",
  "author": "Walter Radduso",
  "description": "This extension add a timer in your Meet calls.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "lib/styles.js",
        "lib/translate.js",
        "lib/buttons.js",
        "lib/draggable.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "48": "images/48.png",
      "128": "images/128.png"
    },
    "default_title": "Call Timer for Meet"
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  }
}