Tab Overflow

Tab Overflow

A tool to prevent you from opening too many tabs.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Overflow",
  "description": "A tool to prevent you from opening too many tabs.",
  "version": "0.1",
  "options_page": "options.html",
  "background": {
    "persistent": false,
    "scripts": [
      "tab-overflow.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/",
    "storage"
  ],
  "web_accessible_resources": [
    "options.html"
  ],
  "browser_action": {
    "default_title": "Tab Overflow",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}