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文件
下載WebRTC Leak Prevent Toggle擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } } |