• You can use this to turn posts from those you wish to ignore into Lorem Ipsum until this functionality is added. Add it to Tampermonkey plug in

    // ==UserScript==
    // @author      mikec
    // @name        new replace with loren ipsum
    // @namespace   lfgss.com
    // @description A user friendly view of the new LFGSS
    // @include     http://www.lfgss.com/*
    // @version     1
    // @require     http://code.jquery.com/jquery-2.1.1.min.js
    // @require     http://sanderkorvemaker.nl/jquery/js/jquery.lorem.js
    // ==/UserScript==
    /**
     * Extend list below depending on who needs to be lorem ipsumed 
     */
    var ignoreList = new Array( "mikec","etc","etc" );
    $( ".comment-item" ).each(function() {              
      var potentialBelm = $( this ).find( '.comment-item-author a strong' ).html();
      if($.inArray(potentialBelm, ignoreList) > -1){
        var el = $( this ).find( '.comment-item-body' ).children('p');
        var x = $( el ).text().length;
          $( el ).lorem({ type: 'characters',amount:x,ptags:true});      
      }     
    });
    
    
About

Avatar for mikec @mikec started