Timer for Google Meet

Timer for Google Meet

Show Time for google meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "/js/background.js"
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "content_scripts": [
    {
      "js": [
        "/js/content.js"
      ],
      "css": [
        "/css/content.css"
      ],
      "matches": [
        "https://meet.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "offline_enabled": true,
  "permissions": [
    "storage"
  ],
  "version": "3.0.0",
  "action": {
    "default_title": "Google Meet Timer"
  },
  "homepage_url": "https://google-meet-timer.freefinancetools.net/"
}