tabzen

tabzen

Too many open tabs? Manage your tabs, regain your sanity and improve your browsing experience with tabzen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "tabzen",
  "version": "0.2.8",
  "description": "Too many open tabs? Manage your tabs, regain your sanity and improve your browsing experience with tabzen",
  "homepage_url": "http://tabzen.org",
  "incognito": "spanning",
  "icons": {
    "16": "images/logo16.png",
    "48": "images/logo.png",
    "128": "images/logo128.png"
  },
  "background": {
    "scripts": [
      "js/common.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_title": "tabzen",
    "default_popup": "html/popup-menu.html",
    "default_icon": "images/logo.png"
  },
  "omnibox": {
    "keyword": "tz"
  },
  "commands": {
    "showSavedTabs": {
      "suggested_key": {
        "default": "Alt+Shift+T"
      },
      "description": "Show save tabs"
    },
    "saveCurrentTab": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "Save current tab"
    },
    "saveCurrentWindow": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "Save current window"
    },
    "saveAllWindows": {
      "suggested_key": {
        "default": "Alt+Shift+A"
      },
      "description": "Save all windows"
    }
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "optional_permissions": [
    "downloads"
  ]
}