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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
    ]
}