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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย swissashley และคุณลักษณะหลักของมันคือ "This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Now You (Don't) See Me

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*"
    ]
}