Hide Tabs (Panic Button)

Hide Tabs (Panic Button)

Easily hide and restore all open tabs with click of a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.1.2",
  "manifest_version": 2,
  "offline_enabled": true,
  "short_name": "hide-tabs",
  "name": "Hide Tabs (Panic Button)",
  "permissions": [
    "storage",
    "sessions"
  ],
  "homepage_url": "https://mybrowseraddon.com/hide-tabs.html",
  "description": "Easily hide and restore all open tabs with the click of a button!",
  "background": {
    "persistent": false,
    "scripts": [
      "lib/config.js",
      "lib/chrome.js",
      "lib/runtime.js",
      "lib/common.js"
    ]
  },
  "browser_action": {
    "default_title": "Hide Tabs (Panic Button)",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "commands": {
    "hide": {
      "description": "Hide Tabs (Panic Button)",
      "suggested_key": {
        "mac": "Alt+Shift+A",
        "default": "Alt+Shift+A"
      }
    }
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}