Panic Button

Panic Button

Panic Button -- Hide all tabs instantly by pressing Alt-Z keyboard shortcut or by clicking a toolbar button

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.1.7",
  "manifest_version": 2,
  "offline_enabled": true,
  "short_name": "__MSG_name__",
  "name": "__MSG_name__",
  "default_locale": "en",
  "description": "__MSG_description__",
  "permissions": [
    "storage",
    "sessions",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "lib/background.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_icon": {
      "16": "data/icons/16.png",
      "48": "data/icons/48.png",
      "128": "data/icons/128.png"
    }
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://*.googleapis.com https://www.googletagmanager.com blob:; object-src 'self'",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "mac": "Alt+Z",
        "default": "Alt+Z"
      }
    }
  },
  "icons": {
    "16": "data/icons/16.png",
    "48": "data/icons/48.png",
    "128": "data/icons/128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}