From 93547547f15698c64e038b78c07899d8de6c7734 Mon Sep 17 00:00:00 2001 From: Roy Olav Purser Date: Sun, 6 Mar 2022 09:26:03 +0100 Subject: [PATCH] add kodi support for stream.purser.it --- chrome/manifest.json | 2 +- chrome/script.js | 24 ++++++++++++++++++++++-- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/chrome/manifest.json b/chrome/manifest.json index ae1b899..d261f0f 100644 --- a/chrome/manifest.json +++ b/chrome/manifest.json @@ -7,7 +7,7 @@ "48": "icon-48.png", "128": "icon-128.png" }, - "version": "109.0", + "version": "110.0", "manifest_version": 3, "host_permissions": ["http://127.0.0.1:4000/jsonrpc"], "permissions": ["tabs"], diff --git a/chrome/script.js b/chrome/script.js index ce4f8e4..50d4620 100644 --- a/chrome/script.js +++ b/chrome/script.js @@ -26,14 +26,17 @@ document.addEventListener("DOMContentLoaded", () => { if(providers.has(hostname)) { if(hostname.includes("youtube.com")) { let newpath = oldurl.searchParams.get("v") - if((newpath instanceof String) || ((typeof newpath) === "string")) { + if(newpath) { newurl.pathname = "/" + newpath } } else { newurl.pathname = oldurl.pathname } search.append("provider", providers.get(hostname)) + } else { + return } + newurl.search = search.toString() const newtab = {} newtab.url = newurl.href @@ -51,7 +54,7 @@ document.addEventListener("DOMContentLoaded", () => { if(hostname.includes("youtube.com")) { newurl = new URL("plugin://plugin.video.youtube") search.append("action", "play_video") - let video_id = oldurl.searchParams.get("v") + const video_id = oldurl.searchParams.get("v") if(video_id) { search.append("videoid", video_id) } @@ -60,6 +63,23 @@ document.addEventListener("DOMContentLoaded", () => { search.append("raw", "true") newurl.pathname = oldurl.pathname } + } else if(hostname == "stream.purser.it") { + const provider = oldurl.searchParams.get("provider") + if(provider) { + if(provider == "youtube") { + newurl = new URL("plugin://plugin.video.youtube") + search.append("action", "play_video") + const video_id = oldurl.pathname.replace("/", "") + if(video_id) { + search.append("videoid", video_id) + } + } else { + search.append("provider", provider) + search.append("raw", "true") + } + } + } else { + return } newurl.search = search.toString()