From 23fe6b64f1e728fa37778da5081d2eb0f7ef5bc3 Mon Sep 17 00:00:00 2001 From: idk Date: Mon, 21 Dec 2020 12:02:52 -0500 Subject: [PATCH] add router console URLS, zzzot, and BRB URLs to Proxy Exceptions list now that container-tab powered isolation is also enabled on I2P apps --- src/profile/prefs.js | 2 +- src/profile/user.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/profile/prefs.js b/src/profile/prefs.js index 5b96565..e454902 100644 --- a/src/profile/prefs.js +++ b/src/profile/prefs.js @@ -27,7 +27,7 @@ user_pref("privacy.firstparty.isolate", true); // Use i2p http proxy for all connections and set homepage to safe local form. // DON'T allow access to the admin panel from the profile we browse i2p with. -user_pref("network.proxy.no_proxies_on", 0); +user_pref("network.proxy.no_proxies_on", "127.0.0.1:7657,localhost:7657,127.0.0.1:7662,localhost:7662,127.0.0.1:7669,localhost:7669"); user_pref("network.proxy.type", 1); user_pref("network.proxy.http", "127.0.0.1"); user_pref("network.proxy.http_port", 4444); diff --git a/src/profile/user.js b/src/profile/user.js index 7ce96b6..8266559 100644 --- a/src/profile/user.js +++ b/src/profile/user.js @@ -95,7 +95,7 @@ user_pref("privacy.firstparty.isolate", true); // Use i2p http proxy for all connections and set homepage to safe local form. // DON'T allow access to the admin panel from the profile we browse i2p with. -user_pref("network.proxy.no_proxies_on", 0); +user_pref("network.proxy.no_proxies_on", "127.0.0.1:7657,localhost:7657,127.0.0.1:7662,localhost:7662,127.0.0.1:7669,localhost:7669"); user_pref("network.proxy.type", 1); user_pref("network.proxy.http", "127.0.0.1"); user_pref("network.proxy.http_port", 4444);