Hide!!! - Panic Button and Tab Manager

Instantly hide and restore your open tabs.

Hide!!! - Panic Button and Tab Managerคืออะไร?

Hide!!! - Panic Button and Tab Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Velvet Market และคุณลักษณะหลักของมันคือ "Instantly hide and restore your open tabs."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide!!! - Panic Button and Tab Manager

ดาวน์โหลดไฟล์ส่วนขยาย Hide!!! - Panic Button and Tab Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Pretend like you're working with Hide!!!

Hide!!! allows you to close your tabs in a pinch and then restore them when the coast is clear. When you close your tabs, Hide!!! will also redirect you to a safe page so you can disguise what you were doing. If the option is enabled, Hide!!! can also clear your history--to fully cover your tracks.

By default, the hotkeys are (Alt + P) to "hide" and (Alt + O) to "restore". The default redirection page is "google.com". To change these settings and more, click on the Hide!!! icon in your Chrome Toolbar.

=======================================================

To see the source code for our project, please visit https://github.com/velvet-market/Hide

Made by Velvet Market. Developed by Hao Zheng and Eugene Li.

=======================================================

If you enjoyed our extension (or didn't), we would really appreciate a review with your honest feedback!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hide!!! - Panic Button and Tab Manager Hide!!! - Panic Button and Tab Manager
ID dppkgbgooinkbjemcpddmldmppgfngik
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hide-panic-button-and-tab/dppkgbgooinkbjemcpddmldmppgfngik
คำอธิบาย Instantly hide and restore your open tabs.
ขนาดไฟล์ 1.71 MB
จำนวนการติดตั้ง 3,403
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2022-03-19
วันที่เผยแพร่ 2021-10-18
คะแนน 4.33/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา Velvet Market
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/velvet-market/Hide
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide!!! - Panic Button and Tab Manager",
    "author": "Eugene Li and Hao Zheng",
    "description": "Instantly hide and restore your open tabs.",
    "version": "1.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "\/js\/background.js"
    },
    "permissions": [
        "tabs",
        "storage",
        "browsingData"
    ],
    "action": {
        "default_popup": "\/html\/popup.html",
        "default_icon": {
            "16": "\/images\/open-16.png",
            "32": "\/images\/open-32.png",
            "48": "\/images\/open-48.png",
            "128": "\/images\/open-128.png"
        }
    },
    "icons": {
        "16": "\/images\/open-16.png",
        "32": "\/images\/open-32.png",
        "48": "\/images\/open-48.png",
        "128": "\/images\/open-128.png"
    },
    "commands": {
        "hide": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Hide"
        },
        "restore": {
            "suggested_key": {
                "default": "Alt+O"
            },
            "description": "Restore"
        }
    }
}