add fallback to youtube-dl

This commit is contained in:
2021-05-20 13:09:00 +02:00
parent d8df3ac030
commit 68aa85ab6c
6 changed files with 149 additions and 35 deletions

10
chrome/manifest.json Normal file
View File

@ -0,0 +1,10 @@
{
"name": "Proxy Stream",
"version": "111.0",
"manifest_version": 3,
"permissions": ["tabs"],
"action": {
"default_title": "Proxy Stream",
"default_popup": "popup.html"
}
}

9
chrome/popup.html Normal file
View File

@ -0,0 +1,9 @@
<html>
<head>
<script src="script.js"></script>
<title>Proxy Stream</title>
</head>
<body>
<button>Proxy Stream</button>
</body>
</html>

32
chrome/script.js Normal file
View File

@ -0,0 +1,32 @@
let providers = new Map();
providers.set("www.youtube.com", "youtube");
providers.set("youtube.com", "youtube");
providers.set("youtu.be", "youtube");
document.addEventListener("DOMContentLoaded", () => {
let [button] = document.getElementsByTagName("button");
button.addEventListener("click", (ev) => {
chrome.tabs.query({currentWindow: true, active: true}, (tabs) => {
let oldurl = new URL(tabs[0].url);
let newurl = new URL("https://stream.purser.it");
let search = new URLSearchParams();
search.append("render", "true");
let hostname = oldurl.hostname.toLowerCase();
if(providers.has(hostname)) {
if(hostname.includes("youtube.com")) {
let newpath = oldurl.searchParams.get("v");
if((newpath instanceof String) || ((typeof newpath) === "string")) {
newurl.pathname = "/" + newpath;
}
} else {
newurl.pathname = oldurl.pathname;
}
search.append("provider", providers.get(hostname));
}
newurl.search = search.toString();
let tab = {};
tab.url = newurl.href;
chrome.tabs.create(tab);
});
});
});