您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirect to link for streamz.ws videos
// ==UserScript== // @name Streamz video redirector // @namespace https://tribbe.de // @version 1.0.2 // @description Redirect to link for streamz.ws videos // @author Tribbe // @include *://streamz.ws* // @include *://streamzz.to* // @require https://greasyfork.org/scripts/6250-waitforkeyelements/code/waitForKeyElements.js?version=23756 // ==/UserScript== // Redirect to Video waitForKeyElements ("video[id*='video_1_html5_api']", function(jNode) { window.location.href = jNode[0].src; });