Created
July 9, 2016 14:28
-
-
Save xemoe/03430fc04580e3cef26d43453db39208 to your computer and use it in GitHub Desktop.
Change manga links to all page
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
(function(){ | |
var newscript = document.createElement('script'); | |
newscript.type = 'text/javascript'; | |
newscript.async = true; | |
newscript.src = 'https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js'; | |
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(newscript); | |
})(); | |
$('a.lst').each(function(a,b) { $(b).attr('href', $(b).attr('href') + '/?all') }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment