Recently Closed

Recently Closed

View and restore recently closed Tabs and Windows

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "short_name": "RecentTabs",
  "version": "3.1",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "32": "icons/icon32.png",
    "38": "icons/icon38.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "sessions",
    "favicon"
  ],
  "background": {
    "service_worker": "sw.js",
    "type": "module"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Z"
      }
    }
  },
  "action": {
    "default_title": "__MSG_extName__"
  }
}