Tab Glutton

Tab Glutton

Tab Glutton helps you manage and navigate the growing number of tabs in your browser.

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 Glutton",
  "version": "2.2.0",
  "permissions": [
    "tabs"
  ],
  "description": "Tab Glutton helps you manage and navigate the growing number of tabs in your browser.",
  "icons": {
    "48": "img/tab_glutton_48.png",
    "128": "img/tab_glutton_128.png"
  },
  "options_page": "pages/options.html",
  "browser_action": {
    "default_title": "Tab Glutton",
    "default_icon": "img/tab_glutton_19.png",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "scripts": [
      "lib/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "lib/keybinding.js"
      ]
    }
  ]
}