Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
This is a fairly simple UserScript that hides categories from the search results, inspired by the mass crap-posting in Forum Games.
You can install this with GreaseMonkey on Firefox, or TamperMonkey on Chrome. Once installed, click here or add it manually.
// ==UserScript==
// @name HideForumGames
// @namespace hideforumgames
// @include https://forums.everybodyedits.com/search.php?action=show_new
// @include http://forums.everybodyedits.com/search.php?action=show_new
// @version 1
// @grant none
// @author Atilla Lonny | [email protected]
// ==/UserScript==
// always lowercase
var hiddenForums = [
'forum games'
];
$('tbody').children().each(function (i, elem) {
if ($.inArray($(elem).find('.tc2').text().toLowerCase(), hiddenForums) != - 1) {
$(elem).css({'display': 'none'});
}
});
*u stinky*
Offline
I have edge, Save me from the hell of Forum games pls
Offline
I have edge, Save me from the hell of Forum games pls
"Sometimes failing a leap of faith is better than inching forward"
- ShinsukeIto
Offline
Kkay wrote:I have edge, Save me from the hell of Forum games pls
Now that IS edge!
:.|:;
Offline
This is a fairly simple UserScript that hides categories from the search results, inspired by the mass crap-posting in Forum Games.
Thanks! I'm glad we could be an inspiration to you!
Offline
It keeps telling me there's a weird host error.
Edit: Nevermind it works now. Thanks for saving me from the spam.
I'm assuming it was just the forums, however I edited OP anyhow on the off-chance it was caused by manually copying, which FluxBB had kindly mangled with URI truncation.
*u stinky*
Offline
Luka504 wrote:It keeps telling me there's a weird host error.
Edit: Nevermind it works now. Thanks for saving me from the spam.I'm assuming it was just the forums, however I edited OP anyhow on the off-chance it was caused by manually copying, which FluxBB had kindly mangled with URI truncation.
No i just didnt realize i had to install TamperMonkey.
Though it works now, no issues.
How long will it take me to get banned again?
Place your bets right here.
Offline
Pages: 1
[ Started around 1732673966.3642 - Generated in 0.096 seconds, 13 queries executed - Memory usage: 1.53 MiB (Peak: 1.68 MiB) ]