TIM - Online Meetings Timer

TIM - Online Meetings Timer

Tim Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TIM - Online Meetings Timer",
  "version": "2.0.8",
  "description": "Tim Browser Extension",
  "author": "General Audit Tool",
  "homepage_url": "https://generalaudittool.com",
  "action": {
    "default_popup": "src/popup/index.html",
    "default_icon": {
      "16": "icon-16.png"
    }
  },
  "options_page": "src/options/index.html",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "public/icon-128.png",
        "public/icon-48.png",
        "public/icon-16.png"
      ],
      "use_dynamic_url": false
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "webRequest",
    "cookies",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}