Piped-Redirects/js/background.js

19 lines
543 B
JavaScript

window.browser = window.browser || window.chrome;
browser.webRequest.onBeforeRequest.addListener(
(details) => {
const url = new URL(details.url);
if (url.hostname.endsWith("youtu.be") && url.pathname.length > 1) {
return { redirectUrl: "https://piped.kavin.rocks/watch?v=" + url.pathname.substr(1) };
}
if (url.hostname.endsWith("youtube.com") || url.hostname.endsWith("youtube-nocookie.com")) {
url.hostname = "piped.kavin.rocks";
return { redirectUrl: url.href };
}
},
{
urls: ["<all_urls>"],
},
["blocking"],
);