Now You (Don't) See Me

This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.

什么是Now You (Don't) See Me?

Now You (Don't) See Me是由swissashley开发的Chrome扩展程序,该扩展的主要功能是“This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.”。

扩展截图

screenshot

下载Now You (Don't) See Me扩展crx文件

下载Now You (Don't) See Me扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Sometimes I don't feel comfortable letting people see the content I am currently browsing when they passing by. Whenever you want to hide all of your tabs,this Chrome extension will help you to close all the tabs, save them into a temporary bookmark folder, and restore them later with one button.

With this extension, users will be able to:

- [ ] Hide ( & bookmark) all the tabs with one click.
- [ ] Restore ( & remove the temporary bookmarks) all the tabs with one click.
- [ ] Use Hotkey to hide & restore.
        "windows": "Ctrl+Shift+A",
        "mac": "Command+Shift+A",
        "chromeos": "Ctrl+Shift+A",
        "linux": "Ctrl+Shift+A"
- [ ] Open your preset homepage when hiding all the tabs.                    

扩展基本信息

名称 Now You (Don't) See Me Now You (Don't) See Me
ID chbfbamopjjdfodhafkjhpbolcpnijio
官方URL https://chromewebstore.google.com/detail/now-you-dont-see-me/chbfbamopjjdfodhafkjhpbolcpnijio
简介 This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.
文件大小 57.24 KB
安装次数 433
当前版本 1.1
更新时间 2016-09-29
上架时间 2016-09-29
评分 5.00/5 共17次评分
开发者 swissashley
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/swissashley/chrome-ext-now-you-dont-see-me
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Now You (Don't) See Me",
    "description": "This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "eye_orange.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+A",
                "mac": "Command+Shift+A",
                "chromeos": "Ctrl+Shift+A",
                "linux": "Ctrl+Shift+A"
            }
        }
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs",
        "bookmarks",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}