fiddy trolls
troll special!!
Collapse
X
-
TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com -
-
Comment
-
Update march 11th 2016 happy troll hunting
anybody else??? leave the names i'll add them
poof they are gone! 

chrome: Tampermonkey - Chrome Web Store
firefox: Greasemonkey :: Add-ons for Firefox
gfy trolls - Pastebin.comCode:// ==UserScript== // @name gfy.com // @description block threads, posts, etc from certain users // @include http://gfy.com/* // @include http://*.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', 'Mr Pheer', 'Ferus', 'SAMANTAmax', 'mineistaken', 'TheSquealer', 'clickity click', 'Magnetron', '420', '#23', 'Brian837', 'desertfoxx', 'xXXtesy10', 'L-Pink', 'escorpio', 'Sid70', 'candyflip', 'Mutt', 'rogueteens', 'SilentKnight', 'Muad\'Dib', 'Coup', 'Grapesoda', 'nico-t', 'slapass', 'LatinaCamChat', 'CyberSEO', 'Just Alex', 'Horatio Caine' ]; $(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_author = $('strong', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); }); //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
-
You should replace this part :
with this to remove their quotes and turn it into a pile of poo.Code:/** $('div[style^="margin:"]').each(function (post_index, post_value) { var post_block = $(this); var post_author = $('strong', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); }); //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 **/
Code:$('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 quoteYour neighbor will murder you with frogs
Click hereComment
-
going to post less too much drama. calling police arming my family its too much.TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
this is my personal list! my lord it makes things more quiet.
no digging through bs. I post news when i see something or hear it on my radio working. not trying to harm anyone.
wehateporn you are on the border on my list

anybody else??? leave the names i'll add them
poof they are gone! 

chrome: Tampermonkey - Chrome Web Store
firefox: Greasemonkey :: Add-ons for Firefox
gfy trolls - Pastebin.comCode:// ==UserScript== // @name gfy.com // @description block threads, posts, etc from certain users // @include http://gfy.com/* // @include http://*.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', 'Mr Pheer', 'astronaut x', 'MrBottomTooth', 'ITraffic', 'JohnnyClips', 'Ribbet Hog', 'Ferus', 'SAMANTAmax', 'mineistaken', 'TheSquealer', 'clickity click', 'Magnetron', '420', '#23', 'Brian837', 'desertfoxx', 'xXXtesy10', 'L-Pink', 'escorpio', 'Sid70', 'candyflip', 'Mutt', 'rogueteens', 'SilentKnight', 'Muad\'Dib', 'Coup', 'Grapesoda', 'nico-t', 'slapass', 'LatinaCamChat', 'CyberSEO', 'Just Alex', 'Horatio Caine' ]; $(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_author = $('strong', this).text(); $(hide_users).each(function (hide_index, hide_user) { if (post_author === hide_user) { post_block.remove(); } }); }); //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
-
this is my personal list! my lord it makes things more quiet.
no digging through bs. I post news when i see something or hear it on my radio working. not trying to harm anyone.
wehateporn you are on the border on my list

Hide yo Irwin hide yo jonesComment
-
install it thank me later.TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
Free traffic and backlinks from one of the fastest growing adult pinsites on the net - SAUCY PICTURES!
Easily my best performing webcam sponsor - CLICK HERE!!Comment
-
Comment
-
make the assholes go poof!!!TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
Comment
-
Thedynasty = chris butler? not rocket scienceTRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
Comment
-
My official site / Custom vids / Make money links / First time girls
Email: [email protected] - "Converting traffic into income since 2005"Comment
-
-
Comment
-
How is your special day so far? Have you cut the cake yet? I wish i was there to sing along your celebration songs like 'murder was the case', 'murder ink' and 'there's been a murder'.
Could you post pics of you party crashing the wakes of the victims? Thanks!
Comment
-
You are so generous, thanks for sharing dude.Comment
-
Comment
-
I should be added to the script. I haven't contributed anything to society since I graduated college other than the two trolls I birthed in the '90s... and the Fuckers been trolling me since 1991. Anyone with the ability to give birth is the Ultimate Troll.My DMs look like an MFC chatroom during a fuck machine show.Comment
-
damn you are easy on the eyes! no fuking way!
TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
-
god install it now
TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
-



TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.comComment
-
-
Comment





Comment