Browsing Time Tracker

Browsing Time Tracker

Monitor the time spent on browsing the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "0.0.2",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "author": {
    "email": "[email protected]"
  },
  "icons": {
    "16": "icons/time-management-16.png",
    "24": "icons/time-management-24.png",
    "32": "icons/time-management-32.png",
    "48": "icons/time-management-64.png",
    "64": "icons/time-management-64.png",
    "128": "icons/time-management-128.png"
  },
  "action": {
    "default_popup": "src/html/main.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "src/javascript/content/browsingTimeTrackerContent.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "idle",
    "tabs",
    "storage",
    "alarms",
    "favicon"
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self",
    "img-src": "//favicon"
  },
  "background": {
    "service_worker": "src/javascript/sw.js",
    "type": "module"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}