Hide!!! - Panic Button and Tab Manager

Hide!!! - Panic Button and Tab Manager

Instantly hide and restore your open tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide!!! - Panic Button and Tab Manager",
  "author": "Eugene Li and Hao Zheng",
  "description": "Instantly hide and restore your open tabs.",
  "version": "1.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "/js/background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "browsingData"
  ],
  "action": {
    "default_popup": "/html/popup.html",
    "default_icon": {
      "16": "/images/open-16.png",
      "32": "/images/open-32.png",
      "48": "/images/open-48.png",
      "128": "/images/open-128.png"
    }
  },
  "icons": {
    "16": "/images/open-16.png",
    "32": "/images/open-32.png",
    "48": "/images/open-48.png",
    "128": "/images/open-128.png"
  },
  "commands": {
    "hide": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "Hide"
    },
    "restore": {
      "suggested_key": {
        "default": "Alt+O"
      },
      "description": "Restore"
    }
  }
}