Panic Button

Panic Button

Hide all your tabs at once with one single button and restore them later.

Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.htm"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon.19.png",
      "38": "images/icon.38.png"
    },
    "default_title": "__MSG_defTitle__"
  },
  "content_security_policy": "script-src 'self'  'unsafe-eval'; object-src 'self';",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/script.js",
        "js/files.js",
        "js/log.js",
        "js/content.js",
        "js/swipe.js",
        "js/request.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extDescr__",
  "icons": {
    "128": "images/icon.128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "options_page": "options.htm",
  "permissions": [
    "tabs",
    "bookmarks",
    "storage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "*://*/*"
  ],
  "version": "1.6.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}