Tab Uncloser

Restore your closed tabs easily

什么是Tab Uncloser?

Tab Uncloser是由Carl Kibler开发的Chrome扩展程序,该扩展的主要功能是“Restore your closed tabs easily”。

下载Tab Uncloser扩展crx文件

下载Tab Uncloser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Easily re-open your closed tabs, from seconds ago to months ago. Closed tabs are shown in a dropdown for quick access to recent items, but you can search the full history.

You can clear the tab history at any time with a single click as well to preserve privacy or clear out old data. 

Privacy: This extension sends zero tracking information to the author, ad sites, or anywhere else. All data is stored locally in your browser.

--

This extension is a fork of Sexy Undo Close Tabs, a great extension the author has abandoned. In current form it is nearly identical to the old extension but with ads insertion removed.                    

扩展基本信息

名称 Tab Uncloser Tab Uncloser
ID pdlkkmdnpkmgilgfenkjlmcamigelfmb
官方URL https://chromewebstore.google.com/detail/tab-uncloser/pdlkkmdnpkmgilgfenkjlmcamigelfmb
简介 Restore your closed tabs easily
文件大小 41.07 KB
安装次数 537
当前版本 1.0
更新时间 2016-06-14
上架时间 2016-06-13
评分 4.82/5 共11次评分
开发者 Carl Kibler
电子邮箱 [email protected]
付费类型 free
支持的语言 en
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": {
        "128": "icon-128.png",
        "48": "icon.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"
    ]
}