TabZ

TabZ

This extension is for people who have too many tabs open and need something to help them manage their browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TabZ",
  "manifest_version": 2,
  "version": "2.1.1",
  "content_scripts": [
    {
      "matches": [
        "http://www.google.com/*"
      ],
      "css": [
        "stylesheets/style.css",
        "stylesheets/options_style.css"
      ],
      "js": [
        "javascript/jquery-1.11.0.js",
        "javascript/script.js",
        "javascript/options_script.js"
      ]
    }
  ],
  "description": "This extension is for people who have too many tabs open and need something to help them manage their browser.",
  "browser_action": {
    "default_icon": "images/icon16.png",
    "default_title": "Tabz",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "tabCapture",
    "storage"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+K",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    }
  }
}