GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Rant I'm Here to do Business Not for Political & Racial Topics (https://gfy.com/showthread.php?t=1302795)

RyuLion 08-24-2018 11:40 AM

I'm Here to do Business Not for Political & Racial Topics
 
What's the script so I can completely block those user's threads, I don't even wanna see their threads but they're are still visible even when I block them.

Rochard 08-24-2018 11:42 AM

You are just here to look at woman's rear ends...

Bladewire 08-24-2018 11:52 AM

troll special!!

ilnjscb 08-24-2018 01:15 PM

You are awesome!

incredibleworkethic 08-24-2018 01:28 PM

No I get it. I wish there was a politics section. But I've learned to just pick it apart.

RyuLion 08-24-2018 03:34 PM

Script please? I think Mr Peer posted it once..

dyna mo 08-24-2018 04:06 PM

Gfy is a tough playground.

brassmonkey 08-24-2018 04:14 PM

Quote:

Originally Posted by RyuLion (Post 22326051)
Script please? I think Mr Peer posted it once..

i posted a version that has most of the a holes on the list. blade posted a link duh!

J. Falcon 08-24-2018 04:21 PM

Fuck Trump!

RyuLion 08-24-2018 04:26 PM

I found it but it's not up right now. Anyone else have it?
is busy doing shit you're not.

MrMaxwell 08-24-2018 05:29 PM

Good post

TheSquealer 08-24-2018 06:01 PM

good fucking luck. this place is an unreadable cesspool of stupidity.

dyna mo 08-24-2018 06:08 PM

Quote:

Originally Posted by RyuLion (Post 22326059)
is busy doing shit you're not.

:1orglaugh:1orglaugh:1orglaugh

you have absolutely no idea baller.

Look Chang 08-24-2018 06:55 PM

Quote:

Originally Posted by Rochard (Post 22325942)
You are just here to look at woman's rear ends...

and front holes ... :stoned

blackmonsters 08-24-2018 07:16 PM

Quote:

Originally Posted by RyuLion (Post 22325938)
What's the script so I can completely block those user's threads, I don't even wanna see their threads but they're are still visible even when I block them.

This is the browser extension to install : https://tampermonkey.net/


This is the script to put into tampermonkey :


PHP Code:

// ==UserScript==
// @name        gfy.com
// @description block  threads,  posts, etc from certain users
// @include     https://gfy.com/*
// @include     http://*.gfy.com/*
// @include     https://gfy.com/*
// @include     https://*.gfy.com/*
// @require     https://code.jquery.com/jquery-1.7.2.min.js
// @version     1.0
// @grant       none
// ==/UserScript==
 
var hide_users = [
    
'Juicy D. Links',
    
'mineistaken',
    
'TheSquealer',
    
'420',
    
'#23',
    
'Brian837',
    
'desertfoxx',
    
'xXXtesy10',
    
'L-Pink',
    
'escorpio',
    
'Sid70',
    
'Horatio Caine',
    
'CjTheFish',
    
'nico-t',
    
'Relic',
    
'Smack dat',
    
'Grapesoda',
    
'Matt 26z',
    
'Nitzer Ebb',
    
'wehateporn',
    
'Google Expert',
    
'Joshua G',
    
'Smut-Talk',
    
'MrMaxwell',
    
'onwebcam',
    
'OneHungLo',
    
'Just Alex',
    
'GFED',
    
'BobJones123',
    
'Boozer',
    
'MFCT',
    
'Scott McD',
    
'Drax',
    
'DraX',
    
'JohnnyNight',
    
'Juicifer',
    
'Steve Rupe',
    
'oppoten',
    
'Matt-ADX',
    
'xKingx',
    
'Acepimp',
    
'hottoddy',
    
'ianmoone332000',
    
'ghjghj',
    
'Ernie D. Links',
    
'Bladewire',
    
'SilentKnight',
    
'DBS.US',
    
'SIK',
    
'8pt-buck',
    
'$5 submissions',
    
'2MuchMark',
    
'Busty2'
];
 
$(
document).ready(function () {
    $(
'#threadslist tbody tr').each(function (thread_indexthread_value) {
        var 
thread_block = $(this);
        var 
thread_starter = $('span[style="cursor:pointer"]'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
thread_starter === hide_user) {
//         $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");
                
thread_block.remove();
            }
        });
    });
 
    $(
'table[id^="post"]').each(function (post_indexpost_value) {
        var 
post_block = $(this);
        var 
post_author = $('a.bigusername'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
post_author === hide_user) {
                
post_block.remove();
            }
        }); 
//removes entire post of someone on the ignore list.
 
$('div[style^="margin:"]').each(function (post_indexpost_value) {
   var 
post_block = $(this);
   var 
post_block_quote = $('div[style^="font-style:italic"]'this);
   var 
post_author = $('strong'this).text();
   $(
hide_users).each(function (hide_indexhide_user) {
       if (
post_author === hide_user) {
           
//post_block.remove();
           
$(post_block_quote).html("<br><font color=#998877><i>I'm a useless piece of </i></font><font size=6>&#128169</font>");
       }
   });
}); 
//removes any quotes someone may have made of a person on ignore, even if quotes multiple times but they have to have the name in the quote
 
    
}); //end of nested forloops for checking both posts and quotes.
}); 


adultchatpay 08-24-2018 07:21 PM

Quote:

Originally Posted by blackmonsters (Post 22326095)
This is the browser extension to install : https://tampermonkey.net/


This is the script to put into tampermonkey :


PHP Code:

// ==UserScript==
// @name        gfy.com
// @description block  threads,  posts, etc from certain users
// @include     https://gfy.com/*
// @include     http://*.gfy.com/*
// @include     https://gfy.com/*
// @include     https://*.gfy.com/*
// @require     https://code.jquery.com/jquery-1.7.2.min.js
// @version     1.0
// @grant       none
// ==/UserScript==
 
var hide_users = [
    
'Juicy D. Links',
    
'mineistaken',
    
'TheSquealer',
    
'420',
    
'#23',
    
'Brian837',
    
'desertfoxx',
    
'xXXtesy10',
    
'L-Pink',
    
'escorpio',
    
'Sid70',
    
'Horatio Caine',
    
'CjTheFish',
    
'nico-t',
    
'Relic',
    
'Smack dat',
    
'Grapesoda',
    
'Matt 26z',
    
'Nitzer Ebb',
    
'wehateporn',
    
'Google Expert',
    
'Joshua G',
    
'Smut-Talk',
    
'MrMaxwell',
    
'onwebcam',
    
'OneHungLo',
    
'Just Alex',
    
'GFED',
    
'BobJones123',
    
'Boozer',
    
'MFCT',
    
'Scott McD',
    
'Drax',
    
'DraX',
    
'JohnnyNight',
    
'Juicifer',
    
'Steve Rupe',
    
'oppoten',
    
'Matt-ADX',
    
'xKingx',
    
'Acepimp',
    
'hottoddy',
    
'ianmoone332000',
    
'ghjghj',
    
'Ernie D. Links',
    
'Bladewire',
    
'SilentKnight',
    
'DBS.US',
    
'SIK',
    
'8pt-buck',
    
'$5 submissions',
    
'2MuchMark',
    
'Busty2'
];
 
$(
document).ready(function () {
    $(
'#threadslist tbody tr').each(function (thread_indexthread_value) {
        var 
thread_block = $(this);
        var 
thread_starter = $('span[style="cursor:pointer"]'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
thread_starter === hide_user) {
//         $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");
                
thread_block.remove();
            }
        });
    });
 
    $(
'table[id^="post"]').each(function (post_indexpost_value) {
        var 
post_block = $(this);
        var 
post_author = $('a.bigusername'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
post_author === hide_user) {
                
post_block.remove();
            }
        }); 
//removes entire post of someone on the ignore list.
 
$('div[style^="margin:"]').each(function (post_indexpost_value) {
   var 
post_block = $(this);
   var 
post_block_quote = $('div[style^="font-style:italic"]'this);
   var 
post_author = $('strong'this).text();
   $(
hide_users).each(function (hide_indexhide_user) {
       if (
post_author === hide_user) {
           
//post_block.remove();
           
$(post_block_quote).html("<br><font color=#998877><i>I'm a useless piece of </i></font><font size=6>&#128169</font>");
       }
   });
}); 
//removes any quotes someone may have made of a person on ignore, even if quotes multiple times but they have to have the name in the quote
 
    
}); //end of nested forloops for checking both posts and quotes.
}); 


:thumbsup:thumbsup:thumbsup

Bladewire 08-24-2018 07:26 PM

Quote:

Originally Posted by RyuLion (Post 22326051)
Script please? I think Mr Peer posted it once..

I already posted it you fucking idiot. You are welcome!

Quote:

Originally Posted by Bladewire (Post 22325948)


RyuLion 08-24-2018 07:40 PM

Quote:

Originally Posted by blackmonsters (Post 22326095)
This is the browser extension to install : https://tampermonkey.net/


This is the script to put into tampermonkey :


PHP Code:

// ==UserScript==
// @name        gfy.com
// @description block  threads,  posts, etc from certain users
// @include     https://gfy.com/*
// @include     http://*.gfy.com/*
// @include     https://gfy.com/*
// @include     https://*.gfy.com/*
// @require     https://code.jquery.com/jquery-1.7.2.min.js
// @version     1.0
// @grant       none
// ==/UserScript==
 
var hide_users = [
    
'Juicy D. Links',
    
'mineistaken',
    
'TheSquealer',
    
'420',
    
'#23',
    
'Brian837',
    
'desertfoxx',
    
'xXXtesy10',
    
'L-Pink',
    
'escorpio',
    
'Sid70',
    
'Horatio Caine',
    
'CjTheFish',
    
'nico-t',
    
'Relic',
    
'Smack dat',
    
'Grapesoda',
    
'Matt 26z',
    
'Nitzer Ebb',
    
'wehateporn',
    
'Google Expert',
    
'Joshua G',
    
'Smut-Talk',
    
'MrMaxwell',
    
'onwebcam',
    
'OneHungLo',
    
'Just Alex',
    
'GFED',
    
'BobJones123',
    
'Boozer',
    
'MFCT',
    
'Scott McD',
    
'Drax',
    
'DraX',
    
'JohnnyNight',
    
'Juicifer',
    
'Steve Rupe',
    
'oppoten',
    
'Matt-ADX',
    
'xKingx',
    
'Acepimp',
    
'hottoddy',
    
'ianmoone332000',
    
'ghjghj',
    
'Ernie D. Links',
    
'Bladewire',
    
'SilentKnight',
    
'DBS.US',
    
'SIK',
    
'8pt-buck',
    
'$5 submissions',
    
'2MuchMark',
    
'Busty2'
];
 
$(
document).ready(function () {
    $(
'#threadslist tbody tr').each(function (thread_indexthread_value) {
        var 
thread_block = $(this);
        var 
thread_starter = $('span[style="cursor:pointer"]'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
thread_starter === hide_user) {
//         $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");
                
thread_block.remove();
            }
        });
    });
 
    $(
'table[id^="post"]').each(function (post_indexpost_value) {
        var 
post_block = $(this);
        var 
post_author = $('a.bigusername'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
post_author === hide_user) {
                
post_block.remove();
            }
        }); 
//removes entire post of someone on the ignore list.
 
$('div[style^="margin:"]').each(function (post_indexpost_value) {
   var 
post_block = $(this);
   var 
post_block_quote = $('div[style^="font-style:italic"]'this);
   var 
post_author = $('strong'this).text();
   $(
hide_users).each(function (hide_indexhide_user) {
       if (
post_author === hide_user) {
           
//post_block.remove();
           
$(post_block_quote).html("<br><font color=#998877><i>I'm a useless piece of </i></font><font size=6>&#128169</font>");
       }
   });
}); 
//removes any quotes someone may have made of a person on ignore, even if quotes multiple times but they have to have the name in the quote
 
    
}); //end of nested forloops for checking both posts and quotes.
}); 


Thank you Sir.

FYI: This guy is proficient in PHP, I recommend him.

It's either do this or give up on GFY, and just post on the other boards since I STILL have plans for the long haul! :)

MFCT 08-24-2018 11:11 PM

Yes, if you're so fragile and delicately balanced that you need to Nerf your reality, by all means use the script.

But if you want serious business talk, you're in the wrong section of the forum. This is the "any kind of BS goes" section. What you're wanting is the "Webmaster Q & Fuckin A" section. Linked here for your convenience: https://gfy.com/webmaster-q-and-fuckin-a/

Mr Pheer 08-24-2018 11:20 PM

Sorry mine got taken down during a server move. I can repost it but looks like you're found a solution.

brassmonkey 08-24-2018 11:30 PM

Quote:

Originally Posted by Bladewire (Post 22326099)
I already posted it you fucking idiot. You are welcome!

he's mad :1orglaugh:1orglaugh:1orglaugh i gave up on ignore. most of the trolls moved on. the fucking around has not been biz fill in over 5 years! stop cryin op!

RyuLion 08-24-2018 11:49 PM

Quote:

Originally Posted by Mr Pheer (Post 22326173)
Sorry mine got taken down during a server move. I can repost it but looks like you're found a solution.

Thank you Sir. :thumbsup

RyuLion 08-25-2018 12:15 AM

I knew this was gonna be a double edge sword but this is a serious post.
I still don't wanna give up on GFY and go somewhere else. :)

RyuLion 08-26-2018 09:40 PM

Up ^^^^^^^^^^^^

Bladewire 08-26-2018 09:49 PM

Quote:

Originally Posted by MFCT (Post 22326169)
Yes, if you're so fragile and delicately balanced that you need to Nerf your reality, by all means use the script.

But if you want serious business talk, you're in the wrong section of the forum. This is the "any kind of BS goes" section. What you're wanting is the "Webmaster Q & Fuckin A" section. Linked here for your convenience: https://gfy.com/webmaster-q-and-fuckin-a/

He's just trolling :2 cents:

Speigelau 08-26-2018 10:40 PM

Quote:

Originally Posted by RyuLion (Post 22325938)
What's the script so I can completely block those user's threads, I don't even wanna see their threads but they're are still visible even when I block them.

All political posts will stop as soon as you can guarantee we never have to see you biting some random chick's ass.

MFCT 08-27-2018 01:59 AM

Quote:

Originally Posted by Bladewire (Post 22326895)
He's just trolling :2 cents:

I don't think RyuLion is trolling. I felt that exactly the same disappointment when I first joined GFY. But that was before I understood how it worked.

brassmonkey 08-27-2018 02:08 AM

Quote:

Originally Posted by MFCT (Post 22326930)
I don't think RyuLion is trolling. I felt that exactly the same disappointment when I first joined GFY. But that was before I understood how it worked.

if you need a filter to do biz start looking at vans and vacant homes :2 cents::2 cents:

MFCT 08-27-2018 02:50 AM

Quote:

Originally Posted by brassmonkey (Post 22326933)
if you need a filter to do biz start looking at vans and vacant homes :2 cents::2 cents:

Well-said. :thumbsup

2MuchMark 08-27-2018 05:47 AM

Quote:

Originally Posted by blackmonsters (Post 22326095)
This is the browser extension to install : https://tampermonkey.net/


This is the script to put into tampermonkey :


PHP Code:

// ==UserScript==
// @name        gfy.com
// @description block  threads,  posts, etc from certain users
// @include     https://gfy.com/*
// @include     http://*.gfy.com/*
// @include     https://gfy.com/*
// @include     https://*.gfy.com/*
// @require     https://code.jquery.com/jquery-1.7.2.min.js
// @version     1.0
// @grant       none
// ==/UserScript==
 
var hide_users = [
    
'Juicy D. Links',
    
'mineistaken',
    
'TheSquealer',
    
'420',
    
'#23',
    
'Brian837',
    
'desertfoxx',
    
'xXXtesy10',
    
'L-Pink',
    
'escorpio',
    
'Sid70',
    
'Horatio Caine',
    
'CjTheFish',
    
'nico-t',
    
'Relic',
    
'Smack dat',
    
'Grapesoda',
    
'Matt 26z',
    
'Nitzer Ebb',
    
'wehateporn',
    
'Google Expert',
    
'Joshua G',
    
'Smut-Talk',
    
'MrMaxwell',
    
'onwebcam',
    
'OneHungLo',
    
'Just Alex',
    
'GFED',
    
'BobJones123',
    
'Boozer',
    
'MFCT',
    
'Scott McD',
    
'Drax',
    
'DraX',
    
'JohnnyNight',
    
'Juicifer',
    
'Steve Rupe',
    
'oppoten',
    
'Matt-ADX',
    
'xKingx',
    
'Acepimp',
    
'hottoddy',
    
'ianmoone332000',
    
'ghjghj',
    
'Ernie D. Links',
    
'Bladewire',
    
'SilentKnight',
    
'DBS.US',
    
'SIK',
    
'8pt-buck',
    
'$5 submissions',
    
'2MuchMark',
    
'Busty2'
];
 
$(
document).ready(function () {
    $(
'#threadslist tbody tr').each(function (thread_indexthread_value) {
        var 
thread_block = $(this);
        var 
thread_starter = $('span[style="cursor:pointer"]'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
thread_starter === hide_user) {
//         $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");
                
thread_block.remove();
            }
        });
    });
 
    $(
'table[id^="post"]').each(function (post_indexpost_value) {
        var 
post_block = $(this);
        var 
post_author = $('a.bigusername'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
post_author === hide_user) {
                
post_block.remove();
            }
        }); 
//removes entire post of someone on the ignore list.
 
$('div[style^="margin:"]').each(function (post_indexpost_value) {
   var 
post_block = $(this);
   var 
post_block_quote = $('div[style^="font-style:italic"]'this);
   var 
post_author = $('strong'this).text();
   $(
hide_users).each(function (hide_indexhide_user) {
       if (
post_author === hide_user) {
           
//post_block.remove();
           
$(post_block_quote).html("<br><font color=#998877><i>I'm a useless piece of </i></font><font size=6>&#128169</font>");
       }
   });
}); 
//removes any quotes someone may have made of a person on ignore, even if quotes multiple times but they have to have the name in the quote
 
    
}); //end of nested forloops for checking both posts and quotes.
}); 



Thank you for thinking of me!

astronaut x 08-27-2018 06:09 AM

Quote:

Originally Posted by 2MuchMark (Post 22326984)
Thank you for thinking of me!

How did you end up on that list? For the most part I think they got it right, but there are a couple other names I would remove it as well.

astronaut x 08-27-2018 06:11 AM

I am starting to think the OP is a strange bird...again.

ghjghj 08-27-2018 06:16 AM

Quote:

Originally Posted by blackmonsters (Post 22326095)
This is the browser extension to install : https://tampermonkey.net/


This is the script to put into tampermonkey :


PHP Code:

// ==UserScript==
// @name        gfy.com
// @description block  threads,  posts, etc from certain users
// @include     https://gfy.com/*
// @include     http://*.gfy.com/*
// @include     https://gfy.com/*
// @include     https://*.gfy.com/*
// @require     https://code.jquery.com/jquery-1.7.2.min.js
// @version     1.0
// @grant       none
// ==/UserScript==
 
var hide_users = [
    
'Juicy D. Links',
    
'mineistaken',
    
'TheSquealer',
    
'420',
    
'#23',
    
'Brian837',
    
'desertfoxx',
    
'xXXtesy10',
    
'L-Pink',
    
'escorpio',
    
'Sid70',
    
'Horatio Caine',
    
'CjTheFish',
    
'nico-t',
    
'Relic',
    
'Smack dat',
    
'Grapesoda',
    
'Matt 26z',
    
'Nitzer Ebb',
    
'wehateporn',
    
'Google Expert',
    
'Joshua G',
    
'Smut-Talk',
    
'MrMaxwell',
    
'onwebcam',
    
'OneHungLo',
    
'Just Alex',
    
'GFED',
    
'BobJones123',
    
'Boozer',
    
'MFCT',
    
'Scott McD',
    
'Drax',
    
'DraX',
    
'JohnnyNight',
    
'Juicifer',
    
'Steve Rupe',
    
'oppoten',
    
'Matt-ADX',
    
'xKingx',
    
'Acepimp',
    
'hottoddy',
    
'ianmoone332000',
    
'ghjghj',
    
'Ernie D. Links',
    
'Bladewire',
    
'SilentKnight',
    
'DBS.US',
    
'SIK',
    
'8pt-buck',
    
'$5 submissions',
    
'2MuchMark',
    
'Busty2'
];
 
$(
document).ready(function () {
    $(
'#threadslist tbody tr').each(function (thread_indexthread_value) {
        var 
thread_block = $(this);
        var 
thread_starter = $('span[style="cursor:pointer"]'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
thread_starter === hide_user) {
//         $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");
                
thread_block.remove();
            }
        });
    });
 
    $(
'table[id^="post"]').each(function (post_indexpost_value) {
        var 
post_block = $(this);
        var 
post_author = $('a.bigusername'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
post_author === hide_user) {
                
post_block.remove();
            }
        }); 
//removes entire post of someone on the ignore list.
 
$('div[style^="margin:"]').each(function (post_indexpost_value) {
   var 
post_block = $(this);
   var 
post_block_quote = $('div[style^="font-style:italic"]'this);
   var 
post_author = $('strong'this).text();
   $(
hide_users).each(function (hide_indexhide_user) {
       if (
post_author === hide_user) {
           
//post_block.remove();
           
$(post_block_quote).html("<br><font color=#998877><i>I'm a useless piece of </i></font><font size=6>&#128169</font>");
       }
   });
}); 
//removes any quotes someone may have made of a person on ignore, even if quotes multiple times but they have to have the name in the quote
 
    
}); //end of nested forloops for checking both posts and quotes.
}); 


Nice safe space faggot

brassmonkey 08-27-2018 06:44 AM

you crack me up negro :1orglaugh:1orglaugh:1orglaugh i needed that this mornin thanx dogg :thumbsup:thumbsup
https://i.imgur.com/mhFkaR4.jpg

Quote:

Originally Posted by blackmonsters (Post 22326095)
This is the browser extension to install : https://tampermonkey.net/


This is the script to put into tampermonkey :


PHP Code:

// ==UserScript==
// @name        gfy.com
// @description block  threads,  posts, etc from certain users
// @include     https://gfy.com/*
// @include     http://*.gfy.com/*
// @include     https://gfy.com/*
// @include     https://*.gfy.com/*
// @require     https://code.jquery.com/jquery-1.7.2.min.js
// @version     1.0
// @grant       none
// ==/UserScript==
 
var hide_users = [
    
'Juicy D. Links',
    
'mineistaken',
    
'TheSquealer',
    
'420',
    
'#23',
    
'Brian837',
    
'desertfoxx',
    
'xXXtesy10',
    
'L-Pink',
    
'escorpio',
    
'Sid70',
    
'Horatio Caine',
    
'CjTheFish',
    
'nico-t',
    
'Relic',
    
'Smack dat',
    
'Grapesoda',
    
'Matt 26z',
    
'Nitzer Ebb',
    
'wehateporn',
    
'Google Expert',
    
'Joshua G',
    
'Smut-Talk',
    
'MrMaxwell',
    
'onwebcam',
    
'OneHungLo',
    
'Just Alex',
    
'GFED',
    
'BobJones123',
    
'Boozer',
    
'MFCT',
    
'Scott McD',
    
'Drax',
    
'DraX',
    
'JohnnyNight',
    
'Juicifer',
    
'Steve Rupe',
    
'oppoten',
    
'Matt-ADX',
    
'xKingx',
    
'Acepimp',
    
'hottoddy',
    
'ianmoone332000',
    
'ghjghj',
    
'Ernie D. Links',
    
'Bladewire',
    
'SilentKnight',
    
'DBS.US',
    
'SIK',
    
'8pt-buck',
    
'$5 submissions',
    
'2MuchMark',
    
'Busty2'
];
 
$(
document).ready(function () {
    $(
'#threadslist tbody tr').each(function (thread_indexthread_value) {
        var 
thread_block = $(this);
        var 
thread_starter = $('span[style="cursor:pointer"]'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
thread_starter === hide_user) {
//         $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");
                
thread_block.remove();
            }
        });
    });
 
    $(
'table[id^="post"]').each(function (post_indexpost_value) {
        var 
post_block = $(this);
        var 
post_author = $('a.bigusername'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
post_author === hide_user) {
                
post_block.remove();
            }
        }); 
//removes entire post of someone on the ignore list.
 
$('div[style^="margin:"]').each(function (post_indexpost_value) {
   var 
post_block = $(this);
   var 
post_block_quote = $('div[style^="font-style:italic"]'this);
   var 
post_author = $('strong'this).text();
   $(
hide_users).each(function (hide_indexhide_user) {
       if (
post_author === hide_user) {
           
//post_block.remove();
           
$(post_block_quote).html("<br><font color=#998877><i>I'm a useless piece of </i></font><font size=6>&#128169</font>");
       }
   });
}); 
//removes any quotes someone may have made of a person on ignore, even if quotes multiple times but they have to have the name in the quote
 
    
}); //end of nested forloops for checking both posts and quotes.
}); 



blackmonsters 08-27-2018 08:28 AM

Quote:

Originally Posted by brassmonkey (Post 22327002)
you crack me up negro :1orglaugh:1orglaugh:1orglaugh i needed that this mornin thanx dogg :thumbsup:thumbsup
https://i.imgur.com/mhFkaR4.jpg

Haters gonna hate.

:1orglaugh

blackmonsters 08-27-2018 08:30 AM

Quote:

Originally Posted by 2MuchMark (Post 22326984)
Thank you for thinking of me!

I think you are on the list for making too many threads one day.
I don't really remember.

CaptainHowdy 08-27-2018 09:24 AM

We already knew that, Ryu . . .

DraX 08-28-2018 07:38 AM

Quote:

Originally Posted by brassmonkey (Post 22326933)
if you need a filter to do biz start looking at vans and vacant homes :2 cents::2 cents:

:1orglaugh

NatalieMojoHost 08-28-2018 09:09 AM

Quote:

Originally Posted by Speigelau (Post 22326898)
All political posts will stop as soon as you can guarantee we never have to see you biting some random chick's ass.

I wish it was that easy. I'm sure Alex would sacrifice his public butt-biting for the good of GFY if this was the requirement.

dyna mo 08-28-2018 10:07 AM

to summarize:

groping and biting women at professional business trade shows is good for op

folks discussing politics at GFY is bad for op.

not shocked.

$5 submissions 08-28-2018 10:13 AM

LOL, how did I end up on your list? Thanks for the compliment, I guess.

Quote:

Originally Posted by blackmonsters (Post 22326095)
This is the browser extension to install : https://tampermonkey.net/


This is the script to put into tampermonkey :


PHP Code:

// ==UserScript==
// @name        gfy.com
// @description block  threads,  posts, etc from certain users
// @include     https://gfy.com/*
// @include     http://*.gfy.com/*
// @include     https://gfy.com/*
// @include     https://*.gfy.com/*
// @require     https://code.jquery.com/jquery-1.7.2.min.js
// @version     1.0
// @grant       none
// ==/UserScript==
 
var hide_users = [
    
'Juicy D. Links',
    
'mineistaken',
    
'TheSquealer',
    
'420',
    
'#23',
    
'Brian837',
    
'desertfoxx',
    
'xXXtesy10',
    
'L-Pink',
    
'escorpio',
    
'Sid70',
    
'Horatio Caine',
    
'CjTheFish',
    
'nico-t',
    
'Relic',
    
'Smack dat',
    
'Grapesoda',
    
'Matt 26z',
    
'Nitzer Ebb',
    
'wehateporn',
    
'Google Expert',
    
'Joshua G',
    
'Smut-Talk',
    
'MrMaxwell',
    
'onwebcam',
    
'OneHungLo',
    
'Just Alex',
    
'GFED',
    
'BobJones123',
    
'Boozer',
    
'MFCT',
    
'Scott McD',
    
'Drax',
    
'DraX',
    
'JohnnyNight',
    
'Juicifer',
    
'Steve Rupe',
    
'oppoten',
    
'Matt-ADX',
    
'xKingx',
    
'Acepimp',
    
'hottoddy',
    
'ianmoone332000',
    
'ghjghj',
    
'Ernie D. Links',
    
'Bladewire',
    
'SilentKnight',
    
'DBS.US',
    
'SIK',
    
'8pt-buck',
    
'$5 submissions',
    
'2MuchMark',
    
'Busty2'
];
 
$(
document).ready(function () {
    $(
'#threadslist tbody tr').each(function (thread_indexthread_value) {
        var 
thread_block = $(this);
        var 
thread_starter = $('span[style="cursor:pointer"]'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
thread_starter === hide_user) {
//         $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");
                
thread_block.remove();
            }
        });
    });
 
    $(
'table[id^="post"]').each(function (post_indexpost_value) {
        var 
post_block = $(this);
        var 
post_author = $('a.bigusername'this).text();
        $(
hide_users).each(function (hide_indexhide_user) {
            if (
post_author === hide_user) {
                
post_block.remove();
            }
        }); 
//removes entire post of someone on the ignore list.
 
$('div[style^="margin:"]').each(function (post_indexpost_value) {
   var 
post_block = $(this);
   var 
post_block_quote = $('div[style^="font-style:italic"]'this);
   var 
post_author = $('strong'this).text();
   $(
hide_users).each(function (hide_indexhide_user) {
       if (
post_author === hide_user) {
           
//post_block.remove();
           
$(post_block_quote).html("<br><font color=#998877><i>I'm a useless piece of </i></font><font size=6>&#128169</font>");
       }
   });
}); 
//removes any quotes someone may have made of a person on ignore, even if quotes multiple times but they have to have the name in the quote
 
    
}); //end of nested forloops for checking both posts and quotes.
}); 




All times are GMT -7. The time now is 04:03 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123