Recent Tabs with your browsing history

Undo closed tabs with your browsing history
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "author": "Aynur Safin",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescr__",
  "version": "0.9",
  "manifest_version": 2,
  "minimum_chrome_version": "37",
  "default_locale": "en",
  "icons": {
    "16": "img/ext_icons/icon-16.png",
    "24": "img/ext_icons/icon-24.png",
    "32": "img/ext_icons/icon-32.png",
    "48": "img/ext_icons/icon-48.png",
    "128": "img/ext_icons/icon-128.png",
    "256": "img/ext_icons/icon-256.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/ext_icons/icon-16.png",
      "24": "img/ext_icons/icon-24.png",
      "32": "img/ext_icons/icon-32.png",
      "48": "img/ext_icons/icon-48.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/storage.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "img/ext_icons/icon-48.png"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+X"
      }
    },
    "undoLastTab": {
      "suggested_key": {
        "default": "Alt+Z"
      },
      "description": "__MSG_hotkey_UndoLastTab__"
    },
    "openWindow": {
      "suggested_key": {
        "default": "Alt+Shift+Z"
      },
      "description": "__MSG_hotkey_OpenWindow__"
    }
  },
  "permissions": [
    "storage",
    "sessions",
    "tabs",
    "chrome://favicon/"
  ],
  "optional_permissions": [
    "history"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}