Skip to content

Instantly share code, notes, and snippets.

@xemoe
Created July 9, 2016 14:28
Show Gist options
  • Save xemoe/03430fc04580e3cef26d43453db39208 to your computer and use it in GitHub Desktop.
Save xemoe/03430fc04580e3cef26d43453db39208 to your computer and use it in GitHub Desktop.
Change manga links to all page
(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