Have a Second - Delayed Gratification

Have a Second - Delayed Gratification

Delayed Gratification for time-wasting sites. Use this to take a breather before entering sites that will consume your time and…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Have a Second - Delayed Gratification",
  "version": "2024.3.1",
  "web_accessible_resources": [
    {
      "resources": [
        "script.js",
        "background.js",
        "countdown.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "permissions": [
        "activeTab"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "action": {},
  "background": {
    "service_worker": "background.js"
  }
}