How I Spend My Time On The Internet

How I Spend My Time On The Internet

How I spend my time on the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "How I Spend My Time On The Internet",
  "version": "0.0.2",
  "manifest_version": 3,
  "description": "How I spend my time on the internet.",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "js": [
        "scripts/histotin.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/histotin-background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "icon/32.png",
      "24": "icon/64.png",
      "32": "icon/64.png",
      "48": "icon/64.png",
      "64": "icon/128.png",
      "128": "icon/256.png",
      "256": "icon/512.png",
      "512": "icon/512.png"
    },
    "default_title": "Click to see how you spend your time on the internet."
  },
  "permissions": [
    "storage"
  ]
}