Stack Tab

Stack Tab

Chrome Tab Manager, Limit the number of active tabs opens, keep unused tabs off screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stack Tab",
  "manifest_version": 2,
  "description": "Chrome Tab Manager, Limit the number of active tabs opens, keep unused tabs off screen",
  "version": "1.7",
  "browser_action": {
    "default_icon": "./icons/icon48.png",
    "default_popup": "index.html",
    "default_title": "xTab"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "./icons/icon16.png",
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage"
  ]
}