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.
I'm Here to do Business Not for Political & Racial Topics
Collapse
X
-
Adult Biz Consultant A tech head since 1995
Affiliate Support: Chaturbate | CCBill Live
Tags: None -
-
Comment
-
Script please? I think Mr Peer posted it once..
Adult Biz Consultant A tech head since 1995
Affiliate Support: Chaturbate | CCBill Live
Comment
-
Comment
-
I found it but it's not up right now. Anyone else have it?
is busy doing shit you're not.
Adult Biz Consultant A tech head since 1995
Affiliate Support: Chaturbate | CCBill Live
Comment
-
good fucking luck. this place is an unreadable cesspool of stupidity..
Yes, fewer illegal immigrants working equates to more job opportunities for American citizens.
RochardComment
-
Comment
-
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_index, thread_value) { var thread_block = $(this); var thread_starter = $('span[style="cursor:pointer"]', this).text(); $(hide_users).each(function (hide_index, hide_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_index, post_value) { var post_block = $(this); var post_author = $('a.bigusername', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); //removes entire post of someone on the ignore list. $('div[style^="margin:"]').each(function (post_index, post_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_index, hide_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>💩</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. });Your neighbor will murder you with frogs
Click hereComment
-
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_index, thread_value) { var thread_block = $(this); var thread_starter = $('span[style="cursor:pointer"]', this).text(); $(hide_users).each(function (hide_index, hide_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_index, post_value) { var post_block = $(this); var post_author = $('a.bigusername', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); //removes entire post of someone on the ignore list. $('div[style^="margin:"]').each(function (post_index, post_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_index, hide_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>💩</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. });

Comment
-
I already posted it you fucking idiot. You are welcome!
Comment
-
Thank you Sir.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_index, thread_value) { var thread_block = $(this); var thread_starter = $('span[style="cursor:pointer"]', this).text(); $(hide_users).each(function (hide_index, hide_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_index, post_value) { var post_block = $(this); var post_author = $('a.bigusername', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); //removes entire post of someone on the ignore list. $('div[style^="margin:"]').each(function (post_index, post_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_index, hide_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>💩</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. });
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!
Adult Biz Consultant A tech head since 1995
Affiliate Support: Chaturbate | CCBill Live
Comment
-
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/Keeping you abreast of the teens that get undressed.
Girls By Location - Couples By Location - Guys By Location - Trans By LocationComment
-
TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
-
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.
Adult Biz Consultant A tech head since 1995
Affiliate Support: Chaturbate | CCBill Live
Comment
-
Up ^^^^^^^^^^^^
Adult Biz Consultant A tech head since 1995
Affiliate Support: Chaturbate | CCBill Live
Comment
-
He's just trollingYes, 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/
Comment
-
All political posts will stop as soon as you can guarantee we never have to see you biting some random chick's ass.Comment
-
Keeping you abreast of the teens that get undressed.
Girls By Location - Couples By Location - Guys By Location - Trans By LocationComment
-
TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
Keeping you abreast of the teens that get undressed.
Girls By Location - Couples By Location - Guys By Location - Trans By LocationComment
-
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_index, thread_value) { var thread_block = $(this); var thread_starter = $('span[style="cursor:pointer"]', this).text(); $(hide_users).each(function (hide_index, hide_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_index, post_value) { var post_block = $(this); var post_author = $('a.bigusername', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); //removes entire post of someone on the ignore list. $('div[style^="margin:"]').each(function (post_index, post_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_index, hide_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>💩</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!Comment
-
Comment
-
-
Nice safe space faggotThis 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_index, thread_value) { var thread_block = $(this); var thread_starter = $('span[style="cursor:pointer"]', this).text(); $(hide_users).each(function (hide_index, hide_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_index, post_value) { var post_block = $(this); var post_author = $('a.bigusername', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); //removes entire post of someone on the ignore list. $('div[style^="margin:"]').each(function (post_index, post_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_index, hide_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>💩</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. });Comment
-
you crack me up negro

i needed that this mornin thanx dogg 


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_index, thread_value) { var thread_block = $(this); var thread_starter = $('span[style="cursor:pointer"]', this).text(); $(hide_users).each(function (hide_index, hide_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_index, post_value) { var post_block = $(this); var post_author = $('a.bigusername', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); //removes entire post of someone on the ignore list. $('div[style^="margin:"]').each(function (post_index, post_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_index, hide_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>💩</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. });TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
-
-
-
-
MojoHost.COM | natalie at mojohost dot com | Skype natalie.ac | Telegram @znatalie. Since 1999: 70 Adult Industry awards for Best Hosting Company and professional excellence.Comment
-
LOL, how did I end up on your list? Thanks for the compliment, I guess.
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_index, thread_value) { var thread_block = $(this); var thread_starter = $('span[style="cursor:pointer"]', this).text(); $(hide_users).each(function (hide_index, hide_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_index, post_value) { var post_block = $(this); var post_author = $('a.bigusername', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); //removes entire post of someone on the ignore list. $('div[style^="margin:"]').each(function (post_index, post_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_index, hide_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>💩</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. });Comment



Comment