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はVelvet Marketによって開発されたChromeの拡張機能で、その主な機能は「Instantly hide and restore your open tabs.」です。
拡張機能のスクリーンショット
Hide!!! - Panic Button and Tab Manager拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } } } |