Recent Tabs With Your Browsing History

Recent Tabs With Your Browsing History

Undo closed tabs with your browsing history

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.0",
  "name": "Recent Tabs With Your Browsing History",
  "description": "Undo closed tabs with your browsing history",
  "browser_action": {
    "default_icon": "icon-48.png",
    "default_popup": "popup.html",
    "default_title": "Recent Tabs"
  },
  "icons": {
    "16": "icon-16.png",
    "24": "icon-24.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "options_page": "popup.html",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "sessions",
    "chrome://favicon/"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}