Tab Tally

Tab Tally

This extension keeps track of the open tabs and windows you're currently running

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 Tally",
  "description": "This extension keeps track of the open tabs and windows you're currently running",
  "author": "Michael Hazani",
  "version": "0.0.1",
  "browser_action": {
    "default_icon": {
      "16": "icon_16.png",
      "48": "icon_48.png",
      "128": "icon_128.png"
    },
    "default_title": "Tab Tally",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ]
}