NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 990 unlock // @namespace Melkisedeh // @version 0.5 // @description ease 99o viewing // @match http://www.990.ro/* // @include http://www.990.ro/* // @copyright 2012+, You // @run-at document-start // ==/UserScript== var sites = ["openload.co", "thevideo.me", "gorillavid.in", "daclips.in", "allmyvideos.net", "vidbull.com", "movpod.in", "vodlocker.com", "filehoot.com", "streamin.to", "vidzi.tv", "nosvideo.com", "vidspot.net", "vidto.me", "vshare.eu", "flashx.tv"]; document.addEventListener ("DOMContentLoaded", DOM_ContentReady); window.addEventListener ("load", pageFullyLoaded); function DOM_ContentReady () { variabila = false; } function pageFullyLoaded () { var links = document.getElementsByTagName('a'); for (var i = 0; i < links.length; i++) { if (links[i].href.indexOf("http://fastupload.ro/video/") > -1) { var mylink = links[i].href.split("http://fastupload.ro/video/")[1]; mylink = "http://superweb.rol.ro/video/"+mylink; window.location.href = mylink; } else if (links[i].href.indexOf("http://superweb.rol.ro/video/") > -1) { var mylink = links[i].href.split("http://superweb.rol.ro/video/")[1]; mylink = "http://superweb.rol.ro/video/"+mylink; window.location.href = mylink; } else if (links[i].href.indexOf("http://superweb.ro/video/") > -1) { var mylink = links[i].href.split("http://superweb.ro/video/")[1]; mylink = "http://superweb.ro/video/"+mylink; window.location.href = mylink; } else if ((links[i].href.indexOf("http://thevideo.me/") > -1) ||(links[i].href.indexOf("http://www.mastervid.com/") > -1)) { // http://thevideo.me/50s1avvjb4ov //http://www.mastervid.com/watch.php?v=c14a338202cd3bd58c28b2b60429bedd //var mylink = links[i].href.split("http://thevideo.me/")[1]; window.location.href = links[i].href; } for (var j = 0; j < sites.length; j++) { if (links[i].href.indexOf(sites[j]) > -1) window.location.href = links[i].href; } } $('.overlay').hide(); }