You are reading a single comment by @mikec and its replies. Click here to read the full conversation.
  • People, people, people,
    Please stop the giving Jeez attention. It's all part of the disorder. Just install Tampermonkey add on in the browser and save this script.
    Have a nice Bank Holiday

    [code]
    // ==UserScript==
    // @name block jeez
    // @namespace lfgss.com
    // @description Block Jeez
    // @include http://www.lfgss.com/*
    // @version 1
    // @require http://code.jquery.com/jquery-1.7.2.min.js
    // ==/UserScript==

    //Completely hide posts on ignore list from even displaying
    $('div[align="center"]:contains("unignore")').hide();
    //Hide all posts quoting users on a user by user basis
    $('div[align="center"]:contains("Originally Posted by Jeez")').hide();
    //Hide all visitor messages by users on a user by user basis
    $('ol[id="message_list"] li:contains("Jeez")').hide();
    [/code]

About

Avatar for mikec @mikec started