Auto-Close Distractions

Auto-Close Distractions

This tool automatically closes any distracting websites you visit. Use it to become more productive and waste less time online!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto-Close Distractions",
  "description": "This tool automatically closes any distracting websites you visit. Use it to become more productive and waste less time online!",
  "version": "1.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "auto-close icon 1.png"
  },
  "icons": {
    "16": "auto-close icon 1.16.png",
    "32": "auto-close icon 1.32.png",
    "48": "auto-close icon 1.48.png",
    "128": "auto-close icon 1.128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content_script_1.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ]
}