Tab limit

Tab limit

Limit the number of tabs you can have open at a time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab limit",
  "description": "Limit the number of tabs you can have open at a time",
  "version": "0.0.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo_128.png",
      "32": "/images/logo_128.png",
      "48": "/images/logo_128.png",
      "128": "/images/logo_128.png"
    }
  },
  "icons": {
    "16": "/images/logo_128.png",
    "32": "/images/logo_128.png",
    "48": "/images/logo_128.png",
    "128": "/images/logo_128.png"
  }
}