TabSpace - The Robust Tab Manager

TabSpace - The Robust Tab Manager

TabSpace is an easy to use, robust tab manager that displays your tabs in a simple view, and allows you to organize and save them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TabSpace - The Robust Tab Manager",
  "short_name": "TabSpace",
  "manifest_version": 2,
  "version": "8.2",
  "description": "TabSpace is an easy to use, robust tab manager that displays your tabs in a simple view, and allows you to organize and save them.",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png",
    "256": "img/icon_256.png",
    "512": "img/icon_512.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "lib/lz-string.min.js",
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "optional_permissions": [
    "notifications",
    "bookmarks"
  ],
  "browser_action": {
    "default_title": "TabSpace",
    "default_icon": "img/icon_128.png"
  },
  "options_ui": {
    "page": "settings.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "img/icon_512.png"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Open Main Page",
      "global": false
    }
  }
}