Undo Close Tab

Undo Close Tab

Allows you to restore the tab you just closed with a single click—plus it can offer a list of recently closed tabs within a convenient context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "8.0.0",
  "description": "__MSG_extensionDescription__",
  "applications": {
    "gecko": {
      "id": "{4853d046-c5a3-436b-bc36-220fd935ee1d}",
      "strict_min_version": "60.0"
    }
  },
  "icons": {
    "24": "icons/undoclosetab.svg",
    "32": "icons/undoclosetab.svg",
    "50": "icons/undoclosetab.svg"
  },
  "background": {
    "scripts": [
      "utils/iconupdater.js",
      "utils/storage.js",
      "tabhandling.js",
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/undoclosetab.svg",
    "theme_icons": [
      {
        "dark": "icons/undoclosetab.svg",
        "light": "icons/undoclosetab-light.svg",
        "size": 19
      }
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true,
    "open_in_tab": false
  },
  "commands": {
    "_execute_browser_action": {}
  },
  "permissions": [
    "menus",
    "tabs",
    "sessions",
    "storage",
    "theme"
  ],
  "default_locale": "en"
}