Last active
October 11, 2015 10:26
-
-
Save vekvoid/6876da6a97ff2fd9691f to your computer and use it in GitHub Desktop.
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 characters
// ==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'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment