Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. // ==UserScript==
  2. // @name MangaLator Front Page English Release
  3. // @author Suwako
  4. // @description Only shows English releases on the front page
  5. // @include http://mangalator.ch/*
  6. // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
  7. // @version 1.0
  8. // ==/UserScript==
  9. //-----------------------------------------------------------
  10. this.$ = this.jQuery = jQuery.noConflict(true); // Avoid duplicate jQuery conflict
  11. //-----------------------------------------------------------
  12. $(function() {
  13. //-----------------------------------------------------------
  14. // Foreign Release Hiding (Non-English Releases)
  15. $('.mangaBox p:nth-child(4)').each(function() {
  16. if ($(this).html().indexOf("English") < 0) {
  17. $(this).parent().parent().hide(); }
  18. });
  19. //-----------------------------------------------------------
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement