Web Activity

Web Activity

Use Web Activity tool as your website time tracker to check your screen time, page views and get web based time tracking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.0",
  "description": "__MSG_shortDesc__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Web Activity",
    "default_popup": "popup.html",
    "default_icon": {
      "512": "assets/icons/512px.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "videoCheck.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "icons": {
    "128": "assets/icons/128px.png",
    "512": "assets/icons/512px.png"
  },
  "permissions": [
    "storage",
    "idle",
    "tabs",
    "notifications"
  ],
  "manifest_version": 3
}