TimeZap Chrome Extension

TimeZap Chrome Extension

The TimeZap Chrome Extension helps you easily time your meetings and share the timer with others!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TimeZap Chrome Extension",
  "description": "The TimeZap Chrome Extension helps you easily time your meetings and share the timer with others!",
  "version": "1.7.0",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Open TimeZap!"
  },
  "content_security_policy": "script-src 'self' 'sha256-fqg3RIUYCWja6OPGoUvHSlxjlxikOPUL52yhxX6nKfQ='; object-src 'self'",
  "icons": {
    "16": "tzap-icon.png",
    "48": "tzap-icon.png",
    "128": "tzap-icon.png"
  },
  "permissions": [
    "*://*.timezap.io/*",
    "*://meet.google.com/*",
    "*://zoom.us/*",
    "*://*.zoom.us/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*",
        "*://zoom.us/*",
        "https://*.zoom.us/*"
      ],
      "js": [
        "content-scripts.js"
      ]
    }
  ]
}