// ==UserScript== // @name Sub2Unlock skipper // @namespace KURD // @version 0.1 // @description bypasses sub2unlock trash security. // @author Corduene#6404 Discord // @match https://sub2unlock.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var GetLink = document.getElementById("theGetLink").innerHTML; window.location.href = GetLink; console.Log('Voila there you go!') })();