diff --git a/i2ppb@eyedeekay.github.io.xpi.torrent b/i2ppb@eyedeekay.github.io.xpi.torrent index fcb5521..cd50cab 100644 Binary files a/i2ppb@eyedeekay.github.io.xpi.torrent and b/i2ppb@eyedeekay.github.io.xpi.torrent differ diff --git a/index.html b/index.html index 895eb0d..0d3d77d 100644 --- a/index.html +++ b/index.html @@ -72,7 +72,7 @@ Clearnet Bittorrent network(With a web seed to support it in case one goes dead).

diff --git a/manifest.json b/manifest.json index 9063502..9b93d2e 100644 --- a/manifest.json +++ b/manifest.json @@ -27,7 +27,7 @@ ], "manifest_version": 2, "name": "__MSG_extensionName__", - "version": "1.45", + "version": "1.47", "description": "__MSG_extensionDescription__", "homepage_url": "https://github.com/eyedeekay/I2P-in-Private-Browsing-Mode-Firefox", "icons": { diff --git a/manifestv3.json b/manifestv3.json index ccd26ef..a7907dc 100644 --- a/manifestv3.json +++ b/manifestv3.json @@ -27,7 +27,7 @@ "host_permissions": [""], "manifest_version": 3, "name": "__MSG_extensionName__", - "version": "1.45", + "version": "1.47", "description": "__MSG_extensionDescription__", "homepage_url": "https://github.com/eyedeekay/I2P-in-Private-Browsing-Mode-Firefox", "icons": { diff --git a/scrub.js b/scrub.js index 1419157..ce547fe 100644 --- a/scrub.js +++ b/scrub.js @@ -155,15 +155,16 @@ function fixURL(contextidentifier, url) { case mailpref: return routerURL + "webmail"; case ircpref: - return "127.0.0.1:7669"; + return "http://127.0.0.1:7669"; case torpref: - return "127.0.0.1:7695"; + return "http://127.0.0.1:7695"; case blogpref: - return "127.0.0.1:8084"; + return "http://127.0.0.1:8084"; default: return "http://proxy.i2p"; } } + return url; } async function forceIntoIsolation(tabId, contextidentifier, pin = true) { @@ -172,7 +173,7 @@ async function forceIntoIsolation(tabId, contextidentifier, pin = true) { var context = await browser.contextualIdentities.query({ name: contextidentifier, }); - console.log("(scrub) tabId URL", tabId.url); + console.log("(scrub) tabId URL", tabId); let newURL = fixURL(contextidentifier, tabId.url); if (tabId.cookieStoreId != context[0].cookieStoreId) { function Create(beforeTab) {