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.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 10-31-2015, 09:25 PM   #1
Mr Pheer
Living inside your head.
 
Mr Pheer's Avatar
 
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,481
A gift for GFY

Tired of the daily news posters (brassmonkey and others) and just the general annoying posters?

Want to make them disappear?

You dont have to add them to your ignore list. that crap just doesnt work.

Download this chrome extension and install it. Edit the file 'hide_users.js' to include the users you no longer want to see.

I added a few by default:

Code:
var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click'
];
I've been using this for a few years, but i didnt write it. I believe Killswitch originally wrote it... I dont remember exactly. I do remember him saying that he didnt mind if I gave it out. So here it is.

Only works on Chrome. Not sure if it will work on a mobile device or not (havent tried it). Since I didnt write it, I cant offer support for it... but this daily news bot network is too fucking much around here.

http://www.mrpheer.com/gfy-ignore-ch...ion-master.zip

Enjoy
Mr Pheer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-31-2015, 10:40 PM   #2
AMDWarrior
Confirmed User
 
Join Date: Nov 2006
Location: Baton Rouge,Louisiana
Posts: 1,489
Best post in a while!
AMDWarrior is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-31-2015, 11:18 PM   #3
Denny
Too lazy to set a custom title
 
Denny's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 17,232
Great, thanks
__________________
Denny is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-31-2015, 11:21 PM   #4
Seth Manson
Please dont fuck animals
 
Seth Manson's Avatar
 
Industry Role:
Join Date: Jul 2010
Location: Henderson, NV
Posts: 3,988
I love this!

Downloaded the zip and extracted it, went to settings in chrome, then clicked extensions, clicked load unpacked extension, selected the unzipped folder for the extension, then closed and reloaded chrome.

Every thread from brassmonkey is gone! It's like he doesnt even exist anymore. I cant even see when people quote him in threads.
__________________
Seth Manson is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-31-2015, 11:22 PM   #5
Relic
So Fucking Banned
 
Join Date: Aug 2002
Posts: 10,300
When that unhygienic asshole makes his next appearance, we will be ready.
Relic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 12:16 AM   #6
Seth Manson
Please dont fuck animals
 
Seth Manson's Avatar
 
Industry Role:
Join Date: Jul 2010
Location: Henderson, NV
Posts: 3,988
Be sure to add 'TTI-Rich' to the list

Code:
var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click',
'TTI-Rich'
];
__________________
Seth Manson is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 04:20 AM   #7
CPA-Rush
small trip to underworld
 
Industry Role:
Join Date: Mar 2012
Location: first gen intel 80386/nintendo-gb/arcade/ps1/internet person
Posts: 4,927
Quote:
Originally Posted by Mr Pheer View Post
Tired of the daily news posters (brassmonkey and others) and just the general annoying posters?

Want to make them disappear?

You dont have to add them to your ignore list. that crap just doesnt work.

Download this chrome extension and install it. Edit the file 'hide_users.js' to include the users you no longer want to see.

I added a few by default:

Code:
var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click'
];
I've been using this for a few years, but i didnt write it. I believe Killswitch originally wrote it... I dont remember exactly. I do remember him saying that he didnt mind if I gave it out. So here it is.

Only works on Chrome. Not sure if it will work on a mobile device or not (havent tried it). Since I didnt write it, I cant offer support for it... but this daily news bot network is too fucking much around here.

http://www.mrpheer.com/gfy-ignore-ch...ion-master.zip

Enjoy
awesome work
__________________

automatic exchange - paxum , bitcoin,pm, payza

. daizzzy signbucks caution will black-hat black-hat your traffic

ignored forever :zuzana designs
CPA-Rush is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 05:25 AM   #8
CPA-Rush
small trip to underworld
 
Industry Role:
Join Date: Mar 2012
Location: first gen intel 80386/nintendo-gb/arcade/ps1/internet person
Posts: 4,927
hope someone can help .

i'm testing a firexfox version now...


Quote:
// ==UserScript==
// @name gfy ignore list
// @description block threads, posts, etc from certain users
// @include https://gfy.com/*
// @include http://*.gfy.com/*
// @require http://ajax.googleapis.com/ajax/libs.../jquery.min.js
// @version 1.0
// @grant none
// ==/UserScript==



$(document).ready(function () {
$('tbody#threadbits_forum_26 tr').each(function (thread_index, thread_value) {
var hide_users = ['DamianJ','DVTimes','Rochard','Twitter'];
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)
{
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();
}
});
});
});
what i'm doing wrong?
__________________

automatic exchange - paxum , bitcoin,pm, payza

. daizzzy signbucks caution will black-hat black-hat your traffic

ignored forever :zuzana designs
CPA-Rush is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 06:12 AM   #9
Helix
Confirmed User
 
Helix's Avatar
 
Join Date: Feb 2002
Location: Michigan
Posts: 5,941
Thanks..it works great
__________________
Free jscott !!!
Free OneHungLo !!!
Free Baddog !!!
Helix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 08:35 AM   #10
MetaMan
I AM WEB 2.0
 
Industry Role:
Join Date: Jan 2003
Posts: 28,682
Bump.....
MetaMan is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 09:03 AM   #11
CPA-Rush
small trip to underworld
 
Industry Role:
Join Date: Mar 2012
Location: first gen intel 80386/nintendo-gb/arcade/ps1/internet person
Posts: 4,927
i guess i'm done with the firefox version .

i will post the link ...
__________________

automatic exchange - paxum , bitcoin,pm, payza

. daizzzy signbucks caution will black-hat black-hat your traffic

ignored forever :zuzana designs
CPA-Rush is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 09:06 AM   #12
blackmonsters
Making PHP work
 
blackmonsters's Avatar
 
Industry Role:
Join Date: Nov 2002
Location: 🌎🌅🌈🌇
Posts: 20,227



__________________
Make Money with Porn
blackmonsters is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 09:33 AM   #13
CPA-Rush
small trip to underworld
 
Industry Role:
Join Date: Mar 2012
Location: first gen intel 80386/nintendo-gb/arcade/ps1/internet person
Posts: 4,927
works on firefox now

require greasemonkey addon only and it should work with tampermonkey.

https://greasyfork.org/en/scripts/13533-gfy-ignore-list

let me know if this make your browser a bit slower

__________________

automatic exchange - paxum , bitcoin,pm, payza

. daizzzy signbucks caution will black-hat black-hat your traffic

ignored forever :zuzana designs
CPA-Rush is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 09:35 AM   #14
CPA-Rush
small trip to underworld
 
Industry Role:
Join Date: Mar 2012
Location: first gen intel 80386/nintendo-gb/arcade/ps1/internet person
Posts: 4,927
current users DamianJ ,DVTimes,Rochard,Juicy D. Links,Twitter
__________________

automatic exchange - paxum , bitcoin,pm, payza

. daizzzy signbucks caution will black-hat black-hat your traffic

ignored forever :zuzana designs
CPA-Rush is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 09:47 AM   #15
Twitter
So Fucking Banned
 
Industry Role:
Join Date: Oct 2015
Posts: 271
Twitter is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 10:44 AM   #16
mineistaken
See signature :)
 
mineistaken's Avatar
 
Industry Role:
Join Date: Apr 2007
Location: ICQ 363 097 773
Posts: 29,656
Quote:
Originally Posted by Mr Pheer View Post
this daily news bot network is too fucking much around here
mineistaken is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 11:48 AM   #17
wocnom
Confirmed User
 
wocnom's Avatar
 
Industry Role:
Join Date: Jan 2013
Posts: 132
Hi there,

this is actually not a bad idea considering useless spam on this forum. I fork the version from CPA-Rush with these changes:
  • It's applicated to the whole forum (search, all sections - not only to "Fucking Around & Program Discussion").
  • In thread listings, the threads stared by users in your hide_list are moved to the bottom of the list and set opacity to 0.5. So you can still see the spam, if you want, but the priority is lower than proper threads from other users.
  • Posts from users in your hide_list are not removed from the thread, but the background color of these posts are set to black. So it's somehow optical marked for you.

Why is this more suitable for me?
  • I still wanna know about existence of these junk posts/threads but I wanna set them lower priority (threads) and mark the posts.

The version is tested with firefox and greasemonkey in last stable versions, but with minor changes it can be easily ported to chrome.
Feel tree to optimise the code, it can be a little slow.

Source: http://pastebin.com/raw.php?i=B7S14EtV
wocnom is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 12:21 PM   #18
CPA-Rush
small trip to underworld
 
Industry Role:
Join Date: Mar 2012
Location: first gen intel 80386/nintendo-gb/arcade/ps1/internet person
Posts: 4,927
Quote:
Originally Posted by wocnom View Post
thanks
__________________

automatic exchange - paxum , bitcoin,pm, payza

. daizzzy signbucks caution will black-hat black-hat your traffic

ignored forever :zuzana designs
CPA-Rush is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 02:25 PM   #19
AaronM
Too lazy to set a custom title
 
AaronM's Avatar
 
Industry Role:
Join Date: Oct 2001
Location: ┌∩┐ ◣_◢ ┌∩┐
Posts: 46,909
Thanks for the gift. It's working pretty good.

Was hoping it would hide quoted users on the list too. Oh well, better than nothing.
AaronM is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 02:28 PM   #20
RyuLion
 
RyuLion's Avatar
 
Industry Role:
Join Date: Mar 2003
Location: San Diego
Posts: 32,174
Finally a solution! Thanks man!
Cheers!
__________________

Adult Biz Consultant A tech head since 1995
RyuLion is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 02:33 PM   #21
AaronM
Too lazy to set a custom title
 
AaronM's Avatar
 
Industry Role:
Join Date: Oct 2001
Location: ┌∩┐ ◣_◢ ┌∩┐
Posts: 46,909
Quote:
Originally Posted by RyuLion View Post
Finally a solution! Thanks man!
Cheers!

Thanks for reminding me to add you to the list.

c ya!


EDIT: Actually, I won't be C'n ya! Pretty fucken cool.
AaronM is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 02:36 PM   #22
AaronM
Too lazy to set a custom title
 
AaronM's Avatar
 
Industry Role:
Join Date: Oct 2001
Location: ┌∩┐ ◣_◢ ┌∩┐
Posts: 46,909
Hell yeah! Totally awesome!

Thanks again.
AaronM is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 02:53 PM   #23
clickity click
So Fecking Bummed
 
Industry Role:
Join Date: Aug 2014
Posts: 3,682
Quote:
Originally Posted by Mr Pheer View Post
Tired of the daily news posters (brassmonkey and others) and just the general annoying posters?

Want to make them disappear?

You dont have to add them to your ignore list. that crap just doesnt work.

Download this chrome extension and install it. Edit the file 'hide_users.js' to include the users you no longer want to see.

I added a few by default:

Code:
var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click'
];
I've been using this for a few years, but i didnt write it. I believe Killswitch originally wrote it... I dont remember exactly. I do remember him saying that he didnt mind if I gave it out. So here it is.

Only works on Chrome. Not sure if it will work on a mobile device or not (havent tried it). Since I didnt write it, I cant offer support for it... but this daily news bot network is too fucking much around here.

http://www.mrpheer.com/gfy-ignore-ch...ion-master.zip

Enjoy
I shouldn't be on that list.
clickity click is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 02:54 PM   #24
L-Pink
working on my tan
 
L-Pink's Avatar
 
Industry Role:
Join Date: Mar 2005
Location: Florida/Kentucky
Posts: 39,152
Quote:
Originally Posted by clickity click View Post
I shouldn't be on that list.
L-Pink is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 03:01 PM   #25
clickity click
So Fecking Bummed
 
Industry Role:
Join Date: Aug 2014
Posts: 3,682
This script is great and works really well. I like the way it pushes the crap down to the bottom.
Couple of things though:

1. When you are browsing a thread you can still see the user post it's just the background is black, not grey like normal.

2. How do I amend the list as I seem to have blocked me..
clickity click is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 03:33 PM   #26
wocnom
Confirmed User
 
wocnom's Avatar
 
Industry Role:
Join Date: Jan 2013
Posts: 132
Quote:
Originally Posted by clickity click View Post
This script is great and works really well. I like the way it pushes the crap down to the bottom.
Couple of things though:

1. When you are browsing a thread you can still see the user post it's just the background is black, not grey like normal.

2. How do I amend the list as I seem to have blocked me..
Just edit the script.

1. If you wanna block the post from listed users completely, just change this:

Code:
//post_block.remove();
$(post_block).find("td.alt2").css("background", "black").next().css("background", "black");
to this:

Code:
post_block.remove();
If you don't care about blocking/marking the posts at all just remove this section:

Code:
  $('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();
        $(post_block).find("td.alt2").css("background", "black").next().css("background", "black");
      }
    });
  });
2. Edit the array hide_users and remove the element with your nick.

Then import the modified script. Or you can edit directly the script itself (in firefox it's located in your_profile_directory/gm_scripts/name_of_the_script).
wocnom is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 04:05 PM   #27
AmeliaG
Too lazy to set a custom title
 
AmeliaG's Avatar
 
Join Date: Jan 2003
Location: Los Angeles
Posts: 10,526
Thank you, Mr Pheer and CPA-Rush!
__________________
GFY Hall of Famer

AltStar Hall of Famer




Blue Blood's SpookyCash.com

Babe photography portfolio
AmeliaG is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 04:20 PM   #28
clickity click
So Fecking Bummed
 
Industry Role:
Join Date: Aug 2014
Posts: 3,682
You know. I don't know if I like this.

I don't really dislike any posts enough to have them pushed to the bottom of the page except perhaps that annoying spammer from the other day.
Even DVT sometimes posts interesting stuff. Same can be said for Harmon, wehateporn, CyberSEO and brassdonkey

If I had to add one to the list I guess it would be L-Pink.
clickity click is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 04:21 PM   #29
Twitter
So Fucking Banned
 
Industry Role:
Join Date: Oct 2015
Posts: 271
Me and Brass are changing nicks soon
Twitter is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 04:30 PM   #30
Mr Pheer
Living inside your head.
 
Mr Pheer's Avatar
 
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,481
I'm glad people are finding it useful, and glad to see others making modifications.
Mr Pheer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 04:32 PM   #31
Mr Pheer
Living inside your head.
 
Mr Pheer's Avatar
 
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,481
I can tell that some people on my list have posted, but I cant see who posted or what they said. This is why I love this thing and kind of kept it a secret for a long time.
Mr Pheer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 04:47 PM   #32
clickity click
So Fecking Bummed
 
Industry Role:
Join Date: Aug 2014
Posts: 3,682
Quote:
Originally Posted by Mr Pheer View Post
I can tell that some people on my list have posted, but I cant see who posted or what they said. This is why I love this thing and kind of kept it a secret for a long time.
But you can see me right?
clickity click is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 04:49 PM   #33
clickity click
So Fecking Bummed
 
Industry Role:
Join Date: Aug 2014
Posts: 3,682
Can I just point out that it's as slow as fuck when closing tabs. That's my only issue really. For now.
clickity click is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-01-2015, 04:59 PM   #34
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
I love it!!!!!!!!!!!!!!!!!
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 12:49 AM   #35
Harmon
( ͡ʘ╭͜ʖ╮͡ʘ)
 
Harmon's Avatar
 
Industry Role:
Join Date: Mar 2004
Posts: 20,000
Works like a charm.
__________________
[email protected]
Harmon is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 04:31 AM   #36
CPA-Rush
small trip to underworld
 
Industry Role:
Join Date: Mar 2012
Location: first gen intel 80386/nintendo-gb/arcade/ps1/internet person
Posts: 4,927
Quote:
Originally Posted by AmeliaG View Post
Thank you, Mr Pheer and CPA-Rush!
yw
__________________

automatic exchange - paxum , bitcoin,pm, payza

. daizzzy signbucks caution will black-hat black-hat your traffic

ignored forever :zuzana designs
CPA-Rush is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 05:06 AM   #37
marlboroack
So Fucking Banned
 
Industry Role:
Join Date: Jul 2010
Location: ☣
Posts: 9,327
Nice, it works!
marlboroack is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 05:45 AM   #38
CaptainHowdy
Too lazy to set a custom title
 
CaptainHowdy's Avatar
 
Industry Role:
Join Date: Dec 2004
Location: Happy in the dark.
Posts: 92,999
I feel like I'm fading away ...
__________________
FLASH SALE INSANITY! deal with a 100% Trusted Seller
Buy Traffic Spots on a High-Quality Network

1 Year or Lifetime — That’s Right, Until the Internet Explodes!
CaptainHowdy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 07:53 AM   #39
O MARINA
I'm clockin' ya, Versace shade watchin' ya
 
O MARINA's Avatar
 
Industry Role:
Join Date: Mar 2003
Location: internet
Posts: 13,787
Quote:
Originally Posted by Mr Pheer View Post
Tired of the daily news posters (brassmonkey and others) and just the general annoying posters?

Want to make them disappear?

You dont have to add them to your ignore list. that crap just doesnt work.

Download this chrome extension and install it. Edit the file 'hide_users.js' to include the users you no longer want to see.

I added a few by default:

Code:
var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click'
];
I've been using this for a few years, but i didnt write it. I believe Killswitch originally wrote it... I dont remember exactly. I do remember him saying that he didnt mind if I gave it out. So here it is.

Only works on Chrome. Not sure if it will work on a mobile device or not (havent tried it). Since I didnt write it, I cant offer support for it... but this daily news bot network is too fucking much around here.

http://www.mrpheer.com/gfy-ignore-ch...ion-master.zip

Enjoy

Cool thanks. Where is Killswitch these days?
__________________
www.HookUP.Cash
DATING APP SPONSOR FOR AFFILIATES
[email protected]
O MARINA is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 07:56 AM   #40
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 76,940
crybabies go hide in your virtual corner!
__________________
TRUMP 2025 KEKAW!!! - Support The Laken Riley Act!!!
END DACA - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 08:01 AM   #41
mineistaken
See signature :)
 
mineistaken's Avatar
 
Industry Role:
Join Date: Apr 2007
Location: ICQ 363 097 773
Posts: 29,656
Quote:
Originally Posted by brassmonkey View Post
crybabies
Says the #1 gfy member in terms of pressing post report button
Unbelievable
mineistaken is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 08:10 AM   #42
just a punk
So fuckin' bored
 
just a punk's Avatar
 
Industry Role:
Join Date: Jun 2003
Posts: 32,381
Quote:
Originally Posted by blackmonsters View Post



LOL
__________________
Obey the Cowgod
just a punk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 10:12 AM   #43
ruff
I have a plan B
 
ruff's Avatar
 
Industry Role:
Join Date: Aug 2004
Location: Seattle - Miami - St Kitts
Posts: 5,501
I put every last one of you bastards on the list including myself. Now when I go to GFY. There is absolutely nothing. Now I can finally get some work done.
__________________
CryptoFeeds
ruff is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 11:16 AM   #44
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
Quote:
Originally Posted by mineistaken View Post
Says the #1 gfy member in terms of pressing post report button
Unbelievable
very true the little c unt snitch
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 11:22 AM   #45
Rob
I'm a great bowler.
 
Rob's Avatar
 
Industry Role:
Join Date: Nov 2003
Location: Right Outside of Normal.
Posts: 13,310
This should be a sticky!

Rob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 04:28 PM   #46
crockett
in a van by the river
 
crockett's Avatar
 
Industry Role:
Join Date: May 2003
Posts: 76,806
I don't post daily news.. lol I just troll dumb Republicans and Russians.. I wonder which category McPhee falls into..

Must be the dumb Republican category otherwise he'd never add cyberseo.
crockett is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 05:17 PM   #47
RyuLion
 
RyuLion's Avatar
 
Industry Role:
Join Date: Mar 2003
Location: San Diego
Posts: 32,174
Back to the Top ^^^
__________________

Adult Biz Consultant A tech head since 1995
RyuLion is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 05:33 PM   #48
CaptainHowdy
Too lazy to set a custom title
 
CaptainHowdy's Avatar
 
Industry Role:
Join Date: Dec 2004
Location: Happy in the dark.
Posts: 92,999
Quote:
Originally Posted by crockett View Post
I don't post daily news.. lol I just troll dumb Republicans and Russians.. I wonder which category McPhee falls into..

Must be the dumb Republican category otherwise he'd never add cyberseo.
There is no such thing as bad publicity??
__________________
FLASH SALE INSANITY! deal with a 100% Trusted Seller
Buy Traffic Spots on a High-Quality Network

1 Year or Lifetime — That’s Right, Until the Internet Explodes!
CaptainHowdy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 05:39 PM   #49
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
i am lovin it
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-02-2015, 06:06 PM   #50
Mr Pheer
Living inside your head.
 
Mr Pheer's Avatar
 
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,481
Quote:
Originally Posted by O MARINA View Post
Cool thanks. Where is Killswitch these days?
I dont think anyone has heard from him in a long time
Mr Pheer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
remember, chrome, news, daily, brassmonkey, write, posters, mind, killswitch, thumbsup, wrote, enjoy, bot, support, offer, network, fucking, mobile, device, dvtimes, crap, list, ignore, download, extension



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.