cocomonk22
Sr Member
Here are two user scripts designed specifically for use with therpf.com. Many browsers support user scripts. Firefox users use the Greasemonkey extension, and other browsers may have scripts built in through a parameter such as --enable-user-scripts. Use Google to find out how to enable user scripts on your browser.
Block Threads
http://userscripts.org/scripts/show/57153
This blocks threads by their id number.
To add ids to block, open the user script with a text viewer such as Notepad and add the numbers in this section as depicted in boldface:
Ignore Posts by Members
http://userscripts.org/scripts/show/57154
This hides posts by members based off of the poster's name.
To add names to block, open the user script with a text viewer such as Notepad and add the names in this section as depicted in boldface:
Block Threads
http://userscripts.org/scripts/show/57153
This blocks threads by their id number.
To add ids to block, open the user script with a text viewer such as Notepad and add the numbers in this section as depicted in boldface:
function blockThreads(){
var IDS = [
/*Put threads to block here in the format 'number',
For example:
'65326',
PUT THREAD IDS TO BLOCK ON NEXT LINE*/
'12345',
];
Ignore Posts by Members
http://userscripts.org/scripts/show/57154
This hides posts by members based off of the poster's name.
To add names to block, open the user script with a text viewer such as Notepad and add the names in this section as depicted in boldface:
(function (){
var blockedUsers = [
/*Put posters to block here in the format "poster name",
For example:
"Anonymous",
PUT POSTER NAMES TO BLOCK ON NEXT LINE*/
"Some User",
];
Last edited: