Restore Closed Tabs - Free

Restore Closed Tabs - Free

Manage closed tabs. Easily restore a closed tab with a click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.2.0",
  "manifest_version": 3,
  "name": "Restore Closed Tabs - Free",
  "permissions": [
    "tabs",
    "storage",
    "sessions",
    "webRequest"
  ],
  "description": "Manage closed tabs. Easily restore a closed tab with a click!",
  "background": {
    "service_worker": "script/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "script/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "options_ui": {
    "open_in_tab": true,
    "page": "html/options.html"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "Restore Closed Tabs Button",
    "default_icon": {
      "16": "icons/toolbar/16.png",
      "32": "icons/toolbar/32.png",
      "64": "icons/toolbar/64.png"
    }
  },
  "icons": {
    "128": "icons/128.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "script/content-js.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}