NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Replace SceneFz Cinemagia with IMDB // @namespace trackers // @include http://scenefz.net/details* // @version 1 // @grant none // ==/UserScript== l = document.links; for(var i=0; i<l.length; i++) { if(l[i].href.indexOf("imdb_id")>0){ l[i].id="changeMe"+i; if(l[i].href.substring(l[i].href.indexOf("imdb_id")+"imdb_id=".length,2)!="tt"){ document.getElementById("changeMe"+i).innerHTML = "http://www.imdb.com/title/tt" + l[i].href.substring(l[i].href.indexOf("imdb_id")+"imdb_id=".length); document.getElementById("changeMe"+i).href="http://www.imdb.com/title/tt" + l[i].href.substring(l[i].href.indexOf("imdb_id")+"imdb_id=".length); }else{ document.getElementById("changeMe"+i).innerHTML = "http://www.imdb.com/title/tt" + l[i].href.substring(l[i].href.indexOf("imdb_id")+"imdb_id=".length); document.getElementById("changeMe"+i).href="http://www.imdb.com/title/" + l[i].href.substring(l[i].href.indexOf("imdb_id")+"imdb_id=".length); } document.getElementById("changeMe"+i).setAttribute("onclick","javascript: function changeMe(){;}"); } }