Tab Garbage Collector

Tab Garbage Collector

Tab Garbage Collector finds duplicate tabs (same URL) and allows you to close them with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tab Garbage Collector",
  "version": "0.0.2",
  "description": "Tab Garbage Collector finds duplicate tabs (same URL) and allows you to close them with one click.",
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  }
}