Last active
October 11, 2015 10:26
Revisions
-
vektrom renamed this gist
Oct 11, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
vektrom created this gist
Oct 11, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ // ==UserScript== // @name seriesyonkis.sx episodes Links // @namespace https://github.com/vektrom/ // @version 0.1 // @description Create normal links in seriesyonkis.sx chapters. // @author Vektrom // @match *://www.seriesyonkis.sx/serie/* // @grant none // ==/UserScript== $(function() { var $episodeLink = $('.episode-title a.episodeLink'); $episodeLink.each(function() { var $this = $(this); $this.attr('href', $this.attr('link')).attr('target', '_blank').removeClass('p1'); }); });