Web Screen Time

Web Screen Time

WST gives you information about how you spend time in web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Web Screen Time",
  "description": "WST gives you information about how you spend time in web pages.",
  "version": "1.0",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Open WST"
  },
  "icons": {
    "16": "st.png",
    "48": "st.png",
    "128": "st.png"
  },
  "background": {
    "scripts": [
      "./static/js/background.ts"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "idle"
  ],
  "optional_permissions": [
    "<all_urls>"
  ]
}