Tab Uncloser

Tab Uncloser

Restore your closed tabs easily

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Undo closed tabs"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Restore your closed tabs easily",
  "icons": {
    "48": "icon.png",
    "128": "icon-128.png"
  },
  "manifest_version": 2,
  "name": "Tab Uncloser",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "unlimitedStorage",
    "chrome://favicon/",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0",
  "web_accessible_resources": [
    "blank.html"
  ]
}