Hello Krew and site members, being that the poll was not quite a landslide and Null was kind enough to provide a script to address the issue if you should so choose,here is a how -to on implementing the script that null provided;
if you are a noob like me and don't know scripting you may use an extension in your browser to make things easier
Chrome ext :Tampermonkey
Firefox ext:Greasemonkey
1) add extension and enable
2)add script via copy paste and enable
3) restart browser voila!
I used the tampermonkey one in chrome it was super easy :just make sure to click the enable boxes after you add the script..in the right corner is the Tamermonkey button hover nd click add script,paste the script below ,install, then click installed scripts button and check box on the left and choose action ..choose enable,then click start, restart chrome(or firefox)
Strip all thread notifications:
Code:
// ==UserScript==
// @name Disable thread notifications in shoutbox
// @namespace nu11ifi3d
// @description Remove thread notifications from the shoutbox on KrewGaming.com
// @include http://krewgaming.com/*
// @version 1
// @grant none
// ==/UserScript==
function taigaRemoveThreads() {
var messages = document.getElementById('taigachat_box').getElementsByTagName('li');
for (var i = 0; i < messages.length; i++) {
if (messages.innerHTML.indexOf('internalLink') > 0) {
messages.style.display = 'none';
}
} setTimeout(function () { taigaRemoveThreads(); }, 100);
} taigaRemoveThreads();
Strip thread notifications by title:
Code:
// ==UserScript==
// @name Disable thread notifications by title in shoutbox
// @namespace nu11ifi3d
// @description Remove thread notifications by title from the shoutbox on KrewGaming.com
// @include http://krewgaming.com/*
// @version 1
// @grant none
// ==/UserScript==
function taigaRemoveThreads() {
var blockedThreads = [
"Last Comment Wins"
];
var messages = document.getElementById('taigachat_box').getElementsByTagName('li');
for (var i = 0; i < messages.length; i++) {
if (messages.innerHTML.indexOf('internalLink') > 0) {
for (var y = 0; y < blockedThreads.length; y++) {
if (messages.innerHTML.indexOf(blockedThreads[y]) > 0) {
messages.style.display = 'none';
}
}
}
} setTimeout(function () { taigaRemoveThreads(); }, 100);
} taigaRemoveThreads();
or check this thread for cleaner copy paste
http://krewgaming.com/threads/10765/page-2#post-184970
if you are a noob like me and don't know scripting you may use an extension in your browser to make things easier
Chrome ext :Tampermonkey
Firefox ext:Greasemonkey
1) add extension and enable
2)add script via copy paste and enable
3) restart browser voila!
I used the tampermonkey one in chrome it was super easy :just make sure to click the enable boxes after you add the script..in the right corner is the Tamermonkey button hover nd click add script,paste the script below ,install, then click installed scripts button and check box on the left and choose action ..choose enable,then click start, restart chrome(or firefox)
Strip all thread notifications:
Code:
// ==UserScript==
// @name Disable thread notifications in shoutbox
// @namespace nu11ifi3d
// @description Remove thread notifications from the shoutbox on KrewGaming.com
// @include http://krewgaming.com/*
// @version 1
// @grant none
// ==/UserScript==
function taigaRemoveThreads() {
var messages = document.getElementById('taigachat_box').getElementsByTagName('li');
for (var i = 0; i < messages.length; i++) {
if (messages.innerHTML.indexOf('internalLink') > 0) {
messages.style.display = 'none';
}
} setTimeout(function () { taigaRemoveThreads(); }, 100);
} taigaRemoveThreads();
Strip thread notifications by title:
Code:
// ==UserScript==
// @name Disable thread notifications by title in shoutbox
// @namespace nu11ifi3d
// @description Remove thread notifications by title from the shoutbox on KrewGaming.com
// @include http://krewgaming.com/*
// @version 1
// @grant none
// ==/UserScript==
function taigaRemoveThreads() {
var blockedThreads = [
"Last Comment Wins"
];
var messages = document.getElementById('taigachat_box').getElementsByTagName('li');
for (var i = 0; i < messages.length; i++) {
if (messages.innerHTML.indexOf('internalLink') > 0) {
for (var y = 0; y < blockedThreads.length; y++) {
if (messages.innerHTML.indexOf(blockedThreads[y]) > 0) {
messages.style.display = 'none';
}
}
}
} setTimeout(function () { taigaRemoveThreads(); }, 100);
} taigaRemoveThreads();
or check this thread for cleaner copy paste
http://krewgaming.com/threads/10765/page-2#post-184970