Sleazy Fork is available in English.

NF.org

Direct image display

Verze ze dne 05. 09. 2014. Zobrazit nejnovější verzi.

// ==UserScript==
// @name	  NF.org
// @namespace	  https://greasyfork.org/users/4390-seriousm
// @description   Direct image display
// @match         http://newsfilter.org/gallery/*
// @version       0.2
// ==/UserScript==

(function(){
    $('[itemprop="thumbnailUrl"]').each(function(ix, item){
        
        var re = /(.*)prev(.*)(--|-\d*x\d*-).*(\..*)/; 
        var str = item.src;
        var subst = '$1media$2$4'; 

        var result = str.replace(re, subst);
        
        $(item).closest('[itemprop="contentURL"]').attr('href',  result);
    });
})();