streamtape video redirector

Redirect to link for streamtape videos

当前为 2021-01-11 提交的版本,查看 最新版本

// ==UserScript==
// @name         streamtape video redirector
// @namespace    https://tribbe.de
// @version      1.0.1
// @description  Redirect to link for streamtape videos
// @author       Tribbe
// @match        https://streamtape.to/*
// @match        https://streamtape.site/*
// @match        https://streamtape.to/get_video?*
// @match        https://*.tapecontent.net/*
// @require      https://gf.qytechs.cn/scripts/6250-waitforkeyelements/code/waitForKeyElements.js?version=23756
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
// @grant        GM.xmlHttpRequest
// ==/UserScript==

// Redirect to Video
waitForKeyElements ("#videolink", function(jNode) {
    if (jNode[0].childNodes.length > 0 && jNode[0].childNodes[0].data.includes("get_video"))
    {
        window.location.href = "https:" + jNode[0].childNodes[0].data;
    }
});

// Stop Autoplay
waitForKeyElements ("video[name*='media']", function(jNode) { jNode[0].autoplay = false; });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址