Undo Closed Tabs Menu

Undo Closed Tabs Menu

This add-on adds a sub-menu when right clicking on a tab, showing recently closed tabs and allowing you to reopen them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Undo Closed Tabs Menu",
  "version": "2.1resigned1",
  "description": "Shows menu of closed tabs when right clicking on tabs.",
  "homepage_url": "https://github.com/joshuacant/",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "webNavigation",
    "tabs",
    "sessions",
    "menus",
    "storage"
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0a1"
    }
  }
}