Browser Stealth Mode
Disguise your internet browsing activities.
Browser Stealth Mode란 무엇입니까?
Browser Stealth Mode은(는) nivivive에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Disguise your internet browsing activities."입니다.
확장 프로그램 스크린샷
Browser Stealth Mode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browser Stealth Mode lets you browse and watch anything without worrying about who's looking over your shoulder. - Click the "eye" browser icon to toggle stealth mode on or off in your current tab. - Use keyboard shortcut (CMD+SHIFT+S on Mac, CTRL+SHIFT+S otherwise) to toggle stealth mode on or off. - Right-click on "eye" browser icon or a website to add the domain or page to a list of websites that Browser Stealth Mode is auto-enabled on. Setting options include: - enable grayscale - hide images - hide videos - show images/videos on hover - hide background images - and mute tab If you'd like to support me, please donate here: https://ko-fi.com/nivivive
확장 프로그램 기본 정보
이름 | Browser Stealth Mode |
ID | offphobpedohkenckinejacpjodchgmn |
공식 URL | https://chromewebstore.google.com/detail/browser-stealth-mode/offphobpedohkenckinejacpjodchgmn |
설명 | Disguise your internet browsing activities. |
파일 크기 | 16.26 KB |
설치 횟수 | 817 |
현재 버전 | 2.1.0 |
최근 업데이트 | 2021-03-11 |
출시 날짜 | 2014-09-16 |
평점 | 4.75/5 총 4 개의 평점 |
개발자 | nivivive |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://forms.gle/tVF5NonHJsqfCK9J8 |
개인정보 보호 정책 페이지 URL | https://www.privacypolicies.com/live/618863e0-242f-4d66-af0d-90b7e909662e |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Browser Stealth Mode", "author": "Nivi Jayasekar", "description": "Disguise your internet browsing activities.", "version": "2.1.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Enable stealth mode", "default_icon": "icon32.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+S", "mac": "Command+Shift+S", "chromeos": "Ctrl+Shift+S", "linux": "Ctrl+Shift+S" } } }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "storage", "contextMenus" ], "options_page": "options.html" } |