BS.to Streamtape AutoSelect

AutoSelect Streamtape if available

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         BS.to Streamtape AutoSelect
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  AutoSelect Streamtape if available
// @author       You
// @match        https://bs.to/serie/*
// @icon         https://www.google.com/s2/favicons?domain=bs.to
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    // &&& markieren, wenn user anderen stream auswäjlt => nicht zu streamtape wechseln
    var pathArr = location.pathname.split("/")
    if (pathArr.length < 6) {
        localStorage.streamtaped = ""
    } else {
        if (pathArr.length == 6) {
            pathArr.splice(pathArr.length-1,1)
        } else
            pathArr.splice(pathArr.length-2,2)
        const path = pathArr.join("/")

        if (localStorage.streamtaped != path) {
            localStorage.streamtaped = ""
            var streamtape = document.getElementsByClassName("hoster Streamtape")
            for (var i=0;i<streamtape.length;i++) {
                if (!streamtape[i].parentElement.attributes.title && streamtape[i].parentElement.parentElement.className!="active" && streamtape[i].parentElement.parentElement.previousElementSibling) {
                    localStorage.streamtaped = path;
                    streamtape[i].parentElement.click()
                }
            }
        }
    }

})();