Tab Close Gold

Tab Close Gold

Tired of unwanted popups? Leftover Zoom tabs got you down? Want a simple extension to auto close tabs? Then look no further!

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 Close Gold",
  "version": "3.0.0.0",
  "permissions": [
    "tabs",
    "storage"
  ],
  "options_page": "./options.html",
  "description": "Tired of unwanted popups? Leftover Zoom tabs got you down? Want a simple extension to auto close tabs? Then look no further!",
  "icons": {
    "128": "icon128.png"
  },
  "author": "mukunku",
  "background": {
    "service_worker": "./background.bundle.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_icon": {
      "128": "icon128.png"
    },
    "default_title": "Tab Close Gold",
    "default_popup": "./popup.html"
  }
}