TabMan

TabMan

Manage Tabs : Stash it, reopen it, organize into folders

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TabMan",
  "version": "1.0",
  "description": "Manage Tabs : Stash it, reopen it, organize into folders",
  "icons": {
    "16": "icons/white_favicon.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "options_page": "/views/options.html",
  "browser_action": {
    "default_icon": "icons/white_icon_128.png",
    "default_title": "TabMan"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "/scripts/jquery.min.js",
      "/scripts/view_helper.js",
      "/scripts/tab_helper.js",
      "/scripts/folder_helper.js",
      "/scripts/tab_manager.js",
      "/scripts/background.js"
    ]
  },
  "commands": {
    "right-tab": {
      "suggested_key": {
        "default": "Ctrl+Right",
        "mac": "Ctrl+Right"
      },
      "description": "Move to tab on the right."
    },
    "left-tab": {
      "suggested_key": {
        "default": "Ctrl+Left",
        "mac": "Ctrl+Left"
      },
      "description": "Move to tab on the left."
    },
    "go-back": {
      "suggested_key": {
        "default": "Ctrl+Down",
        "mac": "Ctrl+Down"
      },
      "description": "Browser back for current tab."
    },
    "go-next": {
      "suggested_key": {
        "default": "Ctrl+Up",
        "mac": "Ctrl+Up"
      },
      "description": "Browser forward for current tab."
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ]
}