d2jsp
Log InRegister
d2jsp Forums > Off-Topic > General Chat > General Archive > How To Actually Block Nekosama Threads
12320Next
Add Reply New Topic
Member
Posts: 62,870
Joined: Aug 2 2009
Gold: 1,189.90
Oct 23 2015 08:16pm
0: Get Tampermonkey for Chrome or GreaseMonkey for Firefox

1: Click Tampermonkey/Greasemonkey

2: Choose "Add Script"

3: Overwrite default with this
Code
// ==UserScript==
// @name Block Nekosama
// @description Block NekoSama's threads
// @match http://forums.d2jsp.org/forum.php?f=27
// ==/UserScript==

var userId = '434436';

var els = document.querySelectorAll('tr > td > a[href="user.php?i=' + userId + '"]');

for(var i=0,l=els.length; i<l; i++){
els[i].parentNode.parentNode.style.display = 'none';
}


4: Profit


for what it's worth, TABITHACAT's id is 1076980
Member
Posts: 15,154
Joined: Feb 3 2015
Gold: 20.69
Oct 23 2015 08:17pm
:hail:
Member
Posts: 51,221
Joined: Jun 3 2010
Gold: 0.69
Warn: 50%
Oct 23 2015 08:18pm
whats my id

oh wait i dont exist
Member
Posts: 69,486
Joined: Nov 28 2007
Gold: 3,621.69
Oct 23 2015 08:18pm
what license is this code released under
Member
Posts: 62,870
Joined: Aug 2 2009
Gold: 1,189.90
Oct 23 2015 08:19pm
Quote (Reset @ Oct 23 2015 07:18pm)
what license is this code released under


MIT as FOSS
Member
Posts: 69,486
Joined: Nov 28 2007
Gold: 3,621.69
Oct 23 2015 08:20pm
n1
Member
Posts: 71,093
Joined: Nov 5 2006
Gold: 1.71
Warn: 50%
Oct 23 2015 08:26pm
its not working dang it
Member
Posts: 24,778
Joined: Mar 7 2008
Gold: 1.00
Oct 23 2015 08:27pm
thats a plugin to edit javascript?
Member
Posts: 16,402
Joined: Mar 28 2009
Gold: 12.69
Oct 23 2015 08:30pm
how do you find other users id's ? Im about to go HAM with this thing
Member
Posts: 69,486
Joined: Nov 28 2007
Gold: 3,621.69
Oct 23 2015 08:30pm
Quote (eric838 @ 24 Oct 2015 14:27)
thats a plugin to edit javascript?


no it edits the css of the div of the post to display none which makes it not appear in the browser

Quote (Shakti @ 24 Oct 2015 14:30)
how do you find other users id's ? Im about to go HAM with this thing


click their profile...

This post was edited by Reset on Oct 23 2015 08:30pm
Go Back To General Archive Topic List
12320Next
Add Reply New Topic