Voe.sx video redirector

Redirect to link for Voe.sx videos

目前為 2020-11-11 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Voe.sx video redirector
// @namespace    https://tribbe.de
// @version      1.0.0
// @description  Redirect to link for Voe.sx videos
// @author       Tribbe
// @match        https://voe.sx/*
// @require      https://greasyfork.org/scripts/6250-waitforkeyelements/code/waitForKeyElements.js?version=23756
// @grant        GM.xmlHttpRequest
// ==/UserScript==

waitForKeyElements (
	"#voe-player_html5_api[src*='mp4']",
	tribbe
);

function tribbe (jNode) {
	window.location.href = jNode[0].src;
}