Redirect to link for Voe.sx videos
当前为
// ==UserScript==
// @name Voe.sx video redirector
// @namespace https://tribbe.de
// @version 1.1.1
// @description Redirect to link for Voe.sx videos
// @author Tribbe
// @match https://voe.sx/*
// @match https://*.voe-network.net/*
// @require https://greasyfork.org/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==
window.addEventListener("load", function() {
var content = document.body.textContent;
var videos = content.match(/(https?.*?\.mp4)/);
window.location.href = videos[0];
});
// Stop Autoplay
waitForKeyElements ("video[name*='media']", function(jNode) { jNode[0].autoplay = false; });