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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } } |