Skip to content

Commit 18d84f7

Browse files
author
Guo-wei Shieh
committed
Update Chrome Network Limiter Extensions to the version of 0.2.1.1
1 parent 64b4c06 commit 18d84f7

File tree

7 files changed

+31
-0
lines changed

7 files changed

+31
-0
lines changed
Binary file not shown.
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Chrome WebRTC Network Limiter
2+
Disables the WebRTC multiple-routes option in Chrome's privacy settings.
3+
4+
★ What it does:
5+
This configures WebRTC to not use certain IP addresses:
6+
- IP addresses not visible to the public internet (e.g. addresses like 192.168.1.2)
7+
- any public IP addresses associated with network interfaces that are not used for web traffic (e.g. an ISP-provided address, when browsing through a VPN)
8+
9+
Once the extension is installed, WebRTC will only use public IP addresses associated with the interface used for web traffic, typically the same addresses that are already provided to sites in browser HTTP requests.
10+
11+
★ Notes:
12+
This extension may affect the performance of applications that use WebRTC for audio/video or real-time data communication. Because it limits the potential network paths, WebRTC may pick a path that results in significantly longer delay or lower quality (e.g. through a VPN). We are attempting to determine how common this is.
13+
14+
By installing this item, you agree to the Google Terms of Service and Privacy Policy at https://www.google.com/intl/en/policies/.
15+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
chrome.privacy.network.webRTCMultipleRoutesEnabled.set({'value': false});
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"manifest_version": 2,
3+
"name": "WebRTC Network Limiter",
4+
"version": "0.2.1.1",
5+
"description": "Disables the WebRTC multiple-routes option in Chrome's privacy settings.",
6+
"icons": {
7+
"16": "img/icon_16.png",
8+
"128": "img/icon_128.png"
9+
},
10+
"permissions": ["privacy"],
11+
"background": {
12+
"scripts": ["eventPage.js"],
13+
"persistent": false
14+
}
15+
}

0 commit comments

Comments
 (0)