WebRTC Leak Prevent Toggle
Toggle WebRTC leak prevention using the official API.
WebRTC Leak Prevent Toggle란 무엇입니까?
WebRTC Leak Prevent Toggle은(는) Aaron Horler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Toggle WebRTC leak prevention using the official API."입니다.
확장 프로그램 스크린샷
WebRTC Leak Prevent Toggle 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows for WebRTC leak prevention to be toggled on and off. It provides the same functionality as my 'WebRTC Leak Prevent' extension, with the added ability to toggle the settings on and off easily. IMPORTANT INFORMATION WebRTC privacy options apply to the whole browser, not just the tab you're using. Be mindful of other tabs you may have open while disabling leak prevention. ISSUES Compatible only with Chrome version 42+. Newer options require at least Chrome 48. GitHub source - https://github.com/aghorler/WebRTC-Leak-Prevent-Toggle CHANGELOG 1.0.14 - Automatic option saving. 1.0.11 - Options now open automatically on first install, new description. 1.0.10 - Change in GitHub username, very minor fixes. 1.0.9 - Further legacy support, error handling, plus minor fixes.
확장 프로그램 기본 정보
이름 | WebRTC Leak Prevent Toggle |
ID | kignegkkmknfpincglcjggfbgghpamim |
공식 URL | https://chromewebstore.google.com/detail/webrtc-leak-prevent-toggl/kignegkkmknfpincglcjggfbgghpamim |
설명 | Toggle WebRTC leak prevention using the official API. |
파일 크기 | 18.83 KB |
설치 횟수 | 4,124 |
현재 버전 | 1.0.14 |
최근 업데이트 | 2018-05-17 |
출시 날짜 | 2018-05-16 |
평점 | 4.27/5 총 15 개의 평점 |
개발자 | Aaron Horler |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/aghorler/WebRTC-Leak-Prevent-Toggle |
도움말 페이지 URL | https://github.com/aghorler/WebRTC-Leak-Prevent/blob/master/DOCUMENTATION.md#documentation |
개인정보 보호 정책 페이지 URL | https://aaronhorler.com/privacy.txt |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WebRTC Leak Prevent Toggle", "version": "1.0.14", "description": "Toggle WebRTC leak prevention using the official API.", "icons": { "128": "\/img\/icon128.png" }, "browser_action": { "default_icon": "\/img\/icon32_off.png", "default_title": "WebRTC Leak Prevent Toggle" }, "options_ui": { "page": "\/html\/options.html", "chrome_style": true, "open_in_tab": false }, "minimum_chrome_version": "42", "permissions": [ "privacy", "storage" ], "background": { "scripts": [ "\/js\/background.js" ], "persistent": false } } |