Mass Tab Management

Mass Tab Management

Allows you to freeze, unload, reload, and condense tabs en masse

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mass Tab Management",
  "version": "1.0",
  "description": "Allows you to freeze, unload, reload, and condense tabs en masse",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "downloads",
    "<all_urls>",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Mass Tab Management",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "Pop up the mass tab management browser action"
    },
    "unload-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Unload current tab"
    },
    "freeze-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+5"
      },
      "description": "'Freeze' current tab"
    },
    "reload-window": {
      "suggested_key": {
        "default": "Ctrl+Shift+7"
      },
      "description": "Reload all tabs in current window"
    }
  }
}