one sec ⏳ delay & 🛑 block websites to focus

one sec ⏳ delay & 🛑 block websites to focus

📵 be less distracted 🥗 establish healthy habits ☕️ take sustainable breaks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "one sec ⏳ delay & 🛑 block websites to focus",
  "description": "📵 be less distracted 🥗 establish healthy habits ☕️ take sustainable breaks",
  "version": "0.4",
  "icons": {
    "128": "icon_128x128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content-script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}