![]() |
![]() |
![]() |
||||
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() ![]() |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
![]() |
#1 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Use this to make GFY great again
Add this script to your Greasemonkey or Tampermonkey browser extensions, and watch GFY become instantly awesome again by removing most of the shitgibbons that post here.
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 = [ 'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred' ]; $(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. }); |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#2 |
Megan Fox's fluffer
Industry Role:
Join Date: Oct 2005
Location: shooting pool in Elysium
Posts: 24,818
|
![]() ![]() ![]() Works great, thx ![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#4 |
Raise Your Weapon
Industry Role:
Join Date: Jun 2003
Location: Outback Australia
Posts: 15,605
|
Thank you
![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#6 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Shutup, you Snow Mexican.
Code updated. 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 = [ 'Spunky', 'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred' ]; $(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. }); |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#7 |
I need a beer
![]() Industry Role:
Join Date: Jun 2002
Location: ♠ Toiletville ♠
Posts: 133,928
|
That's ok. I don't understand the anger at why he must use a script to block people. Don't read their topics and ignore the replys that upset him. It will get better
__________________
CONTACT FOR YOUR INFORMATION HERE
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#8 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
When someone gets quoted and they are on your ignore list, it looks like this:
![]() It gets to be pretty entertaining. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#10 |
in a van by the river
Industry Role:
Join Date: May 2003
Posts: 76,806
|
Funny McQeer doesn't post any of his radical right wing nutters on there..
Guess he needs his safe space where no one disagrees with him.. It's the only way McQeer can attempt to win a argument.. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#11 |
Raise Your Weapon
Industry Role:
Join Date: Jun 2003
Location: Outback Australia
Posts: 15,605
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#12 | |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Quote:
And like always, you assume too much because you have tunnel vision. Just because I posted a script, doesn't mean I'm using it for myself. It's not crockett science. |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#13 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#14 |
I need a beer
![]() Industry Role:
Join Date: Jun 2002
Location: ♠ Toiletville ♠
Posts: 133,928
|
Code Updated!
Mr Pheer is a homo! Gayest of the gay forever!
// ==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 = [ 'Mr Pheer' ]; $(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. });
__________________
CONTACT FOR YOUR INFORMATION HERE
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#15 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#16 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
![]() ![]() ![]() ![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#17 | |
in a van by the river
Industry Role:
Join Date: May 2003
Posts: 76,806
|
Quote:
lol what I tool..
__________________
In November, you can vote for America's next president or its first dictator. |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#18 |
Just Doing My Own Thing
Industry Role:
Join Date: Jan 2011
Location: London, Spain, New Zealand, GFY - Not Croydon...
Posts: 25,039
|
My brain comes with it's own ignore feature - It's incredible - I don't want to read something and just like that I don't...
Maybe there is some kind of hack or workaround so we can get it working in your brain as well.....
__________________
- Chaturbate Script - https://gfy.com/fucking-around-and-b...er-issues.html - Now supports White Labels |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#19 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#20 |
Confirmed User
Industry Role:
Join Date: Dec 2018
Posts: 602
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#21 |
Let's Make Money
Industry Role:
Join Date: Dec 2008
Posts: 8,784
|
Looks good!
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#22 |
Too old to care
Industry Role:
Join Date: Jun 2001
Location: On the sofa, watching TV or doing my jigsaws.
Posts: 52,943
|
A great script for those anti-free speech.
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#23 |
Confirmed User
Industry Role:
Join Date: Dec 2018
Posts: 602
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#24 |
Confirmed User
Industry Role:
Join Date: Dec 2018
Posts: 602
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#25 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#26 |
Industry Role:
Join Date: Aug 2006
Location: Little Vienna
Posts: 32,235
|
Same,after spending 13 years on this forum and seeing all kind of shit nothing can surprise me.
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#27 |
Raise Your Weapon
Industry Role:
Join Date: Jun 2003
Location: Outback Australia
Posts: 15,605
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#28 | |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Quote:
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 = [ 'Paul Markham', 'Spunky', 'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred' ]; $(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. }); |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#30 | |
Too old to care
Industry Role:
Join Date: Jun 2001
Location: On the sofa, watching TV or doing my jigsaws.
Posts: 52,943
|
Quote:
My ignore list is short and only contains those who keep going directly to insults. Even those I will occasionally read. |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#31 |
Too old to care
Industry Role:
Join Date: Jun 2001
Location: On the sofa, watching TV or doing my jigsaws.
Posts: 52,943
|
Please add me to your list.
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#32 |
Too old to care
Industry Role:
Join Date: Jun 2001
Location: On the sofa, watching TV or doing my jigsaws.
Posts: 52,943
|
IMO without the political posts and fun posts GFY would have gone the same way so many other boards. Adult King tries vainly to start business threads, the number of views and replies show the demand for "more business posts" on GFY.
People we rarely hear from cry for the lack of business posts, without starting many themselves. How would this board look if Hillary had won the election. No "Orange man is bad" threads that's for sure. So celebrate the political posts on GFY. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#33 |
Natalie K
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 19,148
|
exactly this
![]() he´s obviously an idiot, because tbh, if you check most of my posts, other than when I add a few of my own images (this is an adult forum & is allowed to show our content), my posts are usually trying to help or give links to worthwhile sites for advice, never do I cuss and create shit, so the only piece of shit here I can see is, McQeer himself ![]() McQeer, obvious troll and self righteous stain up his own ass ![]()
__________________
My official site ![]() ![]() ![]() Skype: gspotproductions - "Converting traffic into income since 2005" |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#34 | |
Making PHP work
Industry Role:
Join Date: Nov 2002
Location: 🌎🌅🌈🌇
Posts: 20,231
|
Quote:
![]() ![]()
__________________
Make Money with Porn |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#35 | |
All Facts Matter
Industry Role:
Join Date: Jan 2012
Location: East Coast
Posts: 19,073
|
Nice script! The main problem is that it also removes the fun that comes from destroying these brainwashed fools with the facts. Like this for example:
Quote:
Crockett you dumbass, Onwebcam posts factual info backed up with sources. You're just allergic to facts. And if you think Onehunglo is racist because he posts more facts, backed up with crime statistics, you might be a brainwashed leftard. You've never proved any us wrong about anything. Get some facts, dumbass. ![]()
__________________
Earn Recurring Money with ➜ Live Adult Webcams | CrakRevenue | Dream Cash
Just Surfing? The Sexiest Models Are At >> MyHotSexCam.com Chat with live Streamate Camgirls |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#36 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
THAT's why you got added! I'll be reading a thread and then suddenly there you are with those... those "pics" and I'm throwing up into my own fucking mouth. Fuck why should someone be forced to see that?!
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#37 | |
in a van by the river
Industry Role:
Join Date: May 2003
Posts: 76,806
|
Quote:
__________________
In November, you can vote for America's next president or its first dictator. |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#38 |
So Fucking Banned
Industry Role:
Join Date: Aug 2016
Posts: 27,033
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#39 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#40 |
Megan Fox's fluffer
Industry Role:
Join Date: Oct 2005
Location: shooting pool in Elysium
Posts: 24,818
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#41 |
Videochat Solutions
Industry Role:
Join Date: Aug 2004
Location: Canada
Posts: 48,583
|
You should call that the "build your own bubble" script, Mr. Pheer.
I think it's better to talk to people that you disagree with once in a while. Make your point, argue if you want, but at least consider other peoples ideas. It'll make you a better person and maybe one day, you can get to be as cool as me. (o)(o)TITS! |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#42 | |
So fuckin' bored
Industry Role:
Join Date: Jun 2003
Posts: 32,381
|
Quote:
![]()
__________________
Obey the Cowgod |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#43 |
Confirmed Asshole
Industry Role:
Join Date: Feb 2003
Location: Half way between sobriety and fubar.
Posts: 12,722
|
You alt right have your heads so far up Chump's ass, you don't need a script
__________________
“If we are to have another contest in the near future of our national existence, I predict that the dividing line will not be Mason and Dixon's but between patriotism and intelligence on the one side, and superstition, ambition and ignorance on the other.” -- Ulysses S. Grant |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#44 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Code updated.
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 = [ 'beerptrol', 'CyberSEO', 'Paul Markham', 'Spunky', 'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred' ]; $(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. }); |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#45 |
I have a plan B
Industry Role:
Join Date: Aug 2004
Location: Seattle - Miami - St Kitts
Posts: 5,501
|
What a bunch of whiny little right wing shits. I imagine every single one of you has a hard-on right now.
![]() ![]() ![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#46 |
Too lazy to set a custom title
Industry Role:
Join Date: May 2011
Location: From this www and beyond!
Posts: 4,844
|
So original OP.
So original.
__________________
Hello |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#47 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#48 | |
So Fucking Banned
Industry Role:
Join Date: Apr 2001
Location: the beach, SoCal
Posts: 107,090
|
Quote:
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#49 |
StraightBro
Industry Role:
Join Date: Aug 2003
Location: Monarch Beach, CA USA
Posts: 56,232
|
↑↑↑ Fagdog posting drunk again
![]() ![]() ![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#50 |
Make STACK$
Industry Role:
Join Date: Nov 2006
Location: sexy time
Posts: 14,418
|
America first!
__________________
Compound interest. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() ![]() |
|||||||
|
|||||||
Bookmarks |