Webbrowsing Time Analyzer

Webbrowsing Time Analyzer

This app tells you How much time you spend on website during the day without accessing browser's histrory data.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_app_title__",
  "version": "1.2",
  "manifest_version": 3,
  "description": "__MSG_app_desc__",
  "default_locale": "ko",
  "icons": {
    "16": "icons/analyzer-16.png",
    "32": "icons/analyzer-32.png",
    "64": "icons/analyzer-64.png",
    "128": "icons/analyzer-128.png",
    "256": "icons/analyzer-256.png"
  },
  "background": {
    "service_worker": "background-scripts/background.js"
  },
  "action": {
    "default_title": "__MSG_app_title__",
    "default_popup": "/popups/daily.html",
    "default_icon": {
      "16": "icons/analyzer-16.png",
      "32": "icons/analyzer-32.png",
      "64": "icons/analyzer-64.png",
      "128": "icons/analyzer-128.png",
      "256": "icons/analyzer-256.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/lib/common.js",
        "/content-scripts/content.js"
      ],
      "css": []
    }
  ],
  "permissions": [
    "notifications",
    "tabs",
    "idle",
    "storage"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "https://www.developer.chrome.com/*",
    "http://whoeatsme.com/*",
    "https://www.google-analytics.com/*"
  ],
  "optional_host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self' 'wasm-unsafe-eval';style-src 'nonce-rAnd0m'; frame-src http://whoeatsme.com; img-src http: https: ws: wss: data:; connect-src http://whoeatsme.com https://www.google-analytics.com"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}