Tab Graph

Tab Graph

Statistics on the history of how many tabs you have open.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.1",
  "name": "Tab Graph",
  "description": "Statistics on the history of how many tabs you have open.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/triangle_19.png",
      "38": "images/triangle_38.png"
    },
    "default_title": "Tab Graph",
    "default_popup": "main.html"
  },
  "icons": {
    "16": "images/triangle_16.png",
    "48": "images/triangle_48.png",
    "128": "images/triangle_128.png"
  },
  "permissions": [
    "storage"
  ]
}