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
官方網址 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:\/\/*\/*"
    ]
}