{
  "manifest_version": 3,
  "name": "Auto Tab Closer",
  "version": "1.3",
  "description": "Closes Cloudflare challenge tabs after 15 seconds, closes other tabs after 120 seconds, keeps at least 1 tab, ignores kolotibablo.com. After closing, checks kolotibablo for a skip button within 5 seconds.",
  "permissions": ["tabs", "storage", "scripting"],
  "host_permissions": [
    "https://kolotibablo.com/*",
    "*://challenges.cloudflare.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Auto Tab Closer"
  },
  "content_scripts": [
    {
      "matches": [
        "*://challenges.cloudflare.com/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "cloudflare-detector.js"
      ]
    }
  ]
}