Undo Closed Tabs for Google Chrome™

Undo Closed Tabs for Google Chrome™

FREE! A simple popup to undo closed tabs, just that and a bit more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "/js/bg-worker.js"
  },
  "commands": {
    "undo-latest": {
      "description": "__MSG_manifest_kbshort1__",
      "suggested_key": {
        "default": "Alt+Z",
        "mac": "MacCtrl+Z"
      }
    }
  },
  "default_locale": "en",
  "description": "__MSG_manifest_description__",
  "homepage_url": "https://undo-closed.pdfwork.com/",
  "icons": {
    "16": "/img/icon-16.png",
    "48": "/img/icon-48.png",
    "128": "/img/icon-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "options_page": "/ui/options.html",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://favicon/"
  ],
  "version": "3.0.0",
  "action": {
    "default_icon": {
      "19": "/img/icon-19.png",
      "38": "/img/icon-38.png"
    },
    "default_popup": "/ui/popup.html",
    "default_title": "__MSG_manifest_toolbarbtn_tooltip__"
  }
}