one sec | Website Blocker & Focus Companion

one sec | Website Blocker & Focus Companion

Gain back control over your time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "one sec | Website Blocker & Focus Companion",
  "description": "Gain back control over your time",
  "version": "1.0",
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "history"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "base.css",
        "icons/*",
        "fonts/*",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}