您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
AutoSelect Streamtape if available
// ==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() } } } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址