NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Fano.tv // @version 0.2.1 // @description fix for double dot for agents of shield // @author Jurgenz // @match http://www.fano.in/tv.php // @grant none // ==/UserScript== function fixShow() { var $show = $('.show_box').find("h5:contains('Marvels')"); $showNr = $show.parent().find('h3').html(); $hrefXvid = $show.parent().find('a.xvid').attr('href', 'http://www.fano.in/browse_old.php?search=/^Marvels.Agents.of.S.H.I.E.L.D.*' + $showNr + '&c6=1&incldead=0'); $hrefHd = $show.parent().find('a.xvid').attr('href', 'http://www.fano.in/browse_old.php?search=/^Marvels.Agents.of.S.H.I.E.L.D.*' + $showNr + '&c35=1&incldead=0'); } fixShow();