one sec | Website Blocker & Focus Companion

one sec | Website Blocker & Focus Companion

“one sec” forces you to take a deep breath and pause whenever you open one of the configured websites (Reddit, YouTube, Twitter, …).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "one sec | Website Blocker & Focus Companion",
  "description": "Gain back control over your time",
  "version": "1.0.0",
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "history",
    "<all_urls>"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "base.css",
    "icons/*",
    "fonts/*",
    "images/*"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "88.0"
    }
  }
}