Web Page Timer

Web Page Timer

Monitor your time spent on different web pages, see it in real time and focus more on your

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Web Page Timer",
  "short_name": "Monitor your time spent on web pages and focus more on your work",
  "version": "1.0.0",
  "description": "Monitor your time spent on different web pages, see it in real time and focus more on your",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "background",
    "webRequest",
    "webRequestBlocking",
    "idle",
    "<all_urls>",
    "alarms"
  ],
  "browser_action": {
    "default_popup": "popup/index.html",
    "default_title": "Web Page Timer"
  },
  "icons": {
    "16": "./assets/icon16.png",
    "32": "./assets/icon32.png",
    "48": "./assets/icon48.png",
    "128": "./assets/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "./content/static/js/main.js"
      ],
      "css": [
        "./content/static/css/main.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "./content/static/css/main.css"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}