Wasted Time Tracker

Wasted Time Tracker

This tool tracks the amount of time you waste each day on distracting websites. Use it to become more productive and disciplined!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wasted Time Tracker",
  "description": "This tool tracks the amount of time you waste each day on distracting websites. Use it to become more productive and disciplined!",
  "version": "1.12",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "stopwatch 1.png"
  },
  "icons": {
    "16": "stopwatch 1.16.png",
    "32": "stopwatch 1.32.png",
    "48": "stopwatch 1.48.png",
    "128": "stopwatch 1.128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content_script_1.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ]
}