WebRTC Leak Prevent Toggle
Toggle WebRTC leak prevention using the official API.
O que é WebRTC Leak Prevent Toggle?
WebRTC Leak Prevent Toggle é uma extensão do Chrome desenvolvida por Aaron Horler, e sua principal característica é "Toggle WebRTC leak prevention using the official API.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão WebRTC Leak Prevent Toggle
Baixe arquivos de extensão WebRTC Leak Prevent Toggle no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | WebRTC Leak Prevent Toggle |
ID | kignegkkmknfpincglcjggfbgghpamim |
URL Oficial | https://chromewebstore.google.com/detail/webrtc-leak-prevent-toggl/kignegkkmknfpincglcjggfbgghpamim |
Descrição | Toggle WebRTC leak prevention using the official API. |
Tamanho do Arquivo | 18.83 KB |
Contagem de Instalações | 4,124 |
Versão Atual | 1.0.14 |
Última Atualização | 2018-05-17 |
Data de Publicação | 2018-05-16 |
Classificação | 4.27/5 Total de 15 Avaliações |
Desenvolvedor | Aaron Horler |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/aghorler/WebRTC-Leak-Prevent-Toggle |
URL da Página de Ajuda | https://github.com/aghorler/WebRTC-Leak-Prevent/blob/master/DOCUMENTATION.md#documentation |
URL da Página de Política de Privacidade | https://aaronhorler.com/privacy.txt |
Idiomas Suportados | 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 } } |