Tab reopen key on incognito mode

Tab reopen key on incognito mode

This extension enables {Ctrl+Shift+T} shortcut key to reopen tabs/windows on Incognito mode.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab reopen key on incognito mode",
  "description": "This extension enables {Ctrl+Shift+T} shortcut key to reopen tabs/windows on Incognito mode.",
  "version": "1.0",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "reopen_tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+X"
      },
      "description": "reopen tab"
    }
  },
  "permissions": [
    "tabs",
    "commands",
    "sessions"
  ]
}