Tabs Counter

Tabs Counter

Count the number of tabs that are open

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tabs Counter",
  "description": "Count the number of tabs that are open",
  "version": "0.1",
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.11.0.min.js",
        "jquery.bpopup.min.js",
        "script.js"
      ]
    }
  ]
}