aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/background
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/background')
-rw-r--r--src/pages/background/background.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pages/background/background.js b/src/pages/background/background.js
index dda0e9a9..d78ff203 100644
--- a/src/pages/background/background.js
+++ b/src/pages/background/background.js
@@ -107,6 +107,10 @@ browser.webRequest.onBeforeRequest.addListener(
}
else {
console.info("Redirecting", url.href, "=>", newUrl);
+ // let wewe = new URL(newUrl);
+ // console.log("wewe", wewe.search);
+ // console.log("path", wewe.pathname);
+ // console.log("searchParams", wewe.searchParams);
return { redirectUrl: newUrl };
}
}