Open Tab Count

Open Tab Count

This extension displays the number of open tabs for each window on the button and the total number of open tabs (in all windows) in a tip. This is based on the extension by Hilary Mason.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Open Tab Count Resurrected",
  "version": "3.2resigned1",
  "description": "This extension displays the number of open tabs  for each window and the total sum.",
  "background": {
    "scripts": [
      "core/tabcount.js"
    ]
  },
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/folder_navy.png",
      "38": "images/folder_navy.png"
    },
    "default_title": "tab count"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}