Sleazy Fork is available in English.

NF.org

Direct image display

  1. // ==UserScript==
  2. // @name NF.org
  3. // @namespace https://greasyfork.org/users/4390-seriousm
  4. // @description Direct image display
  5. // @match http://www.newsfilter.org/gallery/*
  6. // @version 0.3
  7. // ==/UserScript==
  8.  
  9. (function(){
  10. $('.gallery-item-small a img').each(function(ix, item){
  11. var re = /(.*)thumbs\/(.*)/;
  12. var str = item.src;
  13. var subst = '$1$2';
  14. var result = str.replace(re, subst);
  15. $(item).parent().attr('href', result);
  16. });
  17. })();