E-H Torrent Filter

Shows only galleries without torrents.

  1. // ==UserScript==
  2. // @name E-H Torrent Filter
  3. // @description Shows only galleries without torrents.
  4. // @author Hen-Tie
  5. // @homepage https://hen-tie.tumblr.com/
  6. // @namespace https://greasyfork.org/en/users/8336-hen-tie
  7. // @include /^https?:\/\/(e-|ex)hentai\.org\/$/
  8. // @include /^https?:\/\/(e-|ex)hentai\.org\/(\?page=.*|\?f_.*|tag\/.*|uploader\/.*)$/
  9. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js
  10. // @icon https://i.imgur.com/pMMVGRx.png
  11. // @version 1.0
  12. // ==/UserScript==
  13.  
  14. $('.gldown img[title="Show torrents"]').parents('tr, .gl1t').addClass('ehtf-hidden');
  15.  
  16. $('.ip').after('<p class="ehtf-controls">Torrent Filter: Active</p>');
  17.  
  18. $('head').append(`<style data-jqstyle="ehTorrentFilter">
  19. .ehtf-hidden {display:none;}
  20. .ehtf-controls {text-align:center;}
  21. </style>`);