Browse Time Limit

Browse Time Limit

Limit time spent on distracting websites by setting restrictions based on their domain URLs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Browse Time Limit",
  "description": "Limit time spent on distracting websites by setting restrictions based on their domain URLs.",
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": {
      "32": "icon-32.png"
    }
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.index.tsx-14345702-37654a09.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "css": [
        "contentStyle.css"
      ],
      "runAt": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "contentStyle.css",
        "icon-128.png",
        "icon-32.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "assets/common-56bd4e2d.js",
        "assets/client-ae7f2f56.js",
        "assets/index.tsx-14345702.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "version": "1.0.2"
}