diff --git a/public/_locales/en/messages.json b/public/_locales/en/messages.json index 0396ec2d..3074a13d 100644 --- a/public/_locales/en/messages.json +++ b/public/_locales/en/messages.json @@ -341,20 +341,23 @@ "keybindCurrentlySet": { "message": ". It is currently set to:" }, - "supportInvidious": { - "message": "Support Invidious" + "supportOtherSites": { + "message": "Support 3rd Party YouTube-Sites" }, - "supportInvidiousDescription": { - "message": "Invidious (invidio.us) is a third party YouTube client. To enable support, you must accept the extra permissions. This does NOT work in incognito on Chrome and other Chromium variants." + "supportOtherSitesDescription": { + "message": "Support third party party YouTube clients. To enable support, you must accept the extra permissions. This does NOT work in incognito on Chrome and other Chromium variants." + }, + "supportedSites": { + "message": "Supported Sites: " }, "optionsInfo": { "message": "Enable Invidious support, disable autoskip, hide buttons and more." }, "addInvidiousInstance": { - "message": "Add Invidious Instance" + "message": "Add 3rd-Party Client Instance" }, "addInvidiousInstanceDescription": { - "message": "Add a custom instance of Invidious. This must be formatted with JUST the domain. Example: invidious.ajay.app" + "message": "Add a custom instance. This must be formatted with JUST the domain. Example: invidious.ajay.app" }, "add": { "message": "Add" diff --git a/public/options/options.html b/public/options/options.html index 5907c07b..c826d0e7 100644 --- a/public/options/options.html +++ b/public/options/options.html @@ -32,7 +32,7 @@
-

diff --git a/src/render/SkipNotice.tsx b/src/render/SkipNotice.tsx index 526d2d1c..9039dfc4 100644 --- a/src/render/SkipNotice.tsx +++ b/src/render/SkipNotice.tsx @@ -23,7 +23,9 @@ class SkipNotice { //get reference node let referenceNode = document.getElementById("player-container-id") - || document.getElementById("movie_player") || document.querySelector("#player-container .video-js"); + ?? document.getElementById("movie_player") + ?? document.querySelector("#player-container .video-js") // Invidious + ?? document.querySelector(".main-video-section > .video-container"); // Cloudtube if (referenceNode == null) { //for embeds const player = document.getElementById("player");