Allowed Tabs

Allowed Tabs

Set the maximum number of open tabs allowed in the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDesc__",
  "default_locale": "en",
  "version": "0.1.0",
  "author": "Fernando Mireles",
  "homepage_url": "https://github.com/fernandomireles/allowed-tabs",
  "background": {
    "scripts": [
      "static/background.js"
    ]
  },
  "icons": {
    "16": "static/icon-16.png",
    "48": "static/icon-48.png",
    "128": "static/icon-128.png"
  },
  "browser_action": {
    "default_icon": "static/icon-small.png",
    "default_popup": "static/options.html"
  },
  "options_page": "static/options.html",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "static/icon-small.png",
    "static/icon.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}