diff --git a/README.md b/README.md index 6e50ade..9836d0f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Sneedium -A basic web browser in Electron. ***Now with our own, functioning adblocker and privacy redirection technologies!*** +A basic web browser in Electron. ***Now with a functioning adblocker and privacy redirection technologies!*** Supports compiling via electron packager. Install and run it with: @@ -41,4 +41,4 @@ npm start ## What is Privacy Redirection Technology (PRT)? -This is a simple technology that replaces a bad URL with a more privacy friendly service, when we know that ADs aren't 100% blocked, or just to provide a better UX. TLDR: Clickjacking for good. +This is a simple technology that replaces a bad URL with a more privacy friendly service, when we know that ADs aren't 100% blocked, or just to provide a better UX. TLDR: Clickjacking for the greater good. diff --git a/libbrowz.js b/libbrowz.js index 33d4ec5..bc36c93 100644 --- a/libbrowz.js +++ b/libbrowz.js @@ -26,8 +26,8 @@ function go() { let browser = tabGroup.getActiveTab() let url = normalizeUrl(document.getElementById("txtUrl").value) if (url.includes("youtube.com") || url.includes("youtu.be")) { - url = url.replaceAll("youtube.com", "yewtu.be") - url = url.replaceAll("youtu.be", "yewtu.be") + url = url.replaceAll("youtube.com", "https://piped.video") + url = url.replaceAll("youtu.be", "https://piped.video") } else if (url.includes("google.com/?q")) { url = url.replaceAll("google.com/?q", "startpage.com/?q") } else if (url.includes("https://news.google.com")) { diff --git a/logo.png b/logo.png index 46055bf..392959c 100644 Binary files a/logo.png and b/logo.png differ