Tab Count

Tab Count

Displays the count and list of open tabs from current or all windows (configurable) and allows you to select and/or close them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Count",
  "version": "2.8",
  "description": "Displays the count and list of open tabs from current or all windows (configurable) and allows you to select and/or close them.",
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_name": "Tab Count",
    "default_icon": "images/icon19.png",
    "default_title": "Tab Count"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "tabs"
  ]
}