Tab Overflow

Tab Overflow

Manages Chrome tabs that are open in active window

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "browser_style": true,
    "default_title": "Tab Overflow",
    "default_locale": "en",
    "default_popup": "popUp.html",
    "default_icon": {
      "16": "icons/monkey_16x16.png",
      "48": "icons/monkey48x48.png"
    }
  },
  "author": "Donald Blanc, Geoffrey Lin",
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "contextMenus"
  ],
  "icons": {
    "48": "icons/monkey48x48.png",
    "96": "icons/monkey128x128.png",
    "128": "icons/monkey128x128.png"
  },
  "description": "Manages Chrome tabs that are open in active window",
  "manifest_version": 2,
  "name": "Tab Overflow",
  "version": "1.0"
}