Undo Close Tab Button

Undo Close Tab Button

Reopens the last closed tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "50.0"
    }
  },
  "author": "Michael Buckley",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/16-tab-undo.png",
      "24": "icons/24-tab-undo.png",
      "32": "icons/32-tab-undo.png",
      "48": "icons/48-tab-undo.png"
    },
    "default_popup": "popup/panel.html",
    "default_title": "__MSG_undoCloseTabLabel__"
  },
  "default_locale": "en_US",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://codefisher.org/toolbar_button/",
  "icons": {
    "16": "icons/16-tab-undo.png",
    "24": "icons/24-tab-undo.png",
    "32": "icons/32-tab-undo.png",
    "48": "icons/48-tab-undo.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "options_ui": {
    "browser_style": true,
    "page": "option/option.html"
  },
  "permissions": [
    "storage",
    "sessions",
    "tabs",
    "menus"
  ],
  "version": "1.8resigned1"
}