Tab Limiter

Tab Limiter

Limit the number of open tabs – in total and per window

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Limiter",
  "description": "Limit the number of open tabs – in total and per window",
  "version": "0.4.0",
  "author": "Matthias Vogt",
  "homepage_url": "https://github.com/matthias-vogt/tab-limiter",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/48.png",
      "128": "icons/128.png"
    },
    "default_popup": "options.html",
    "default_title": "Tab Limiter"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "manifest_version": 2
}