Web Activity Time Tracker - Block Sites, Web Analytics & Pomodoro

Web Activity Time Tracker - Block Sites, Web Analytics & Pomodoro

Track time of your web activity, limit and block distracting websites. Monitor your web usage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "2.0.22",
  "manifest_version": 3,
  "short_name": "Web Tracker",
  "options_page": "src/dashboard.html",
  "default_locale": "en",
  "icons": {
    "16": "16x16.png",
    "32": "32x32.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "idle",
    "unlimitedStorage",
    "alarms",
    "notifications",
    "offscreen"
  ],
  "offline_enabled": true,
  "background": {
    "service_worker": "src/background.js"
  },
  "action": {
    "default_popup": "src/popup.html",
    "default_title": "Web Activity Time Tracker"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/pomodoro-sounds/*.mp3"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}