I don't use ad blocker on my phone so that would in theory help while being on PC but I don't particularly have issue with 400x150 image on a 32 inch screen, it's on phone that it's absolute cancer
I'm wondering if JSP has a system to block certain users sig
You can only disable everyones sigs at once
The only other alternative is this ->
https://greasyfork.org/en/scripts/488938-fokse-s-d2jsp-post-blockerI'm not sure if it works on mobile, but I use it on PC and have a ton of peoples posts blocked just because of their sussy sigs.
e: Maybe you could rip something like this too ->
Code
// ==UserScript==
// @name Topic and Post remover
// @namespace http://tampermonkey.net/
// @version 1
// @description Removes posts and topics if user ID of author/post author is in bannedUsers. You add more users by using this format = ["id","id","id"] etc.
// @author Ehmmkay
// @include https://forums.d2jsp.org/topic.php*
// @include https://forums.d2jsp.org/post.php
// @include https://forums.d2jsp.org/forum.php*
// @icon https://www.google.com/s2/favicons?domain=d2jsp.org
// @require https://code.jquery.com/jquery-latest.js
// @grant none
// ==/UserScript==
var bannedUsers = ["701571"];
function parsePosts() {
$('div.ppc').each(function () {
var userId = $(this).find('div.pU a').attr('href').split("=")[1];
if (bannedUsers.indexOf(userId) !== -1) {
this.remove();
}
});
}
function parseTopics() {
$('tr').each(function () {
if ($(this).find('td:nth-child(3) a').attr('href') && ~$(this).find('td:nth-child(3) a').attr('href').indexOf('user.php?i=')) {
var userId = $(this).find('td:nth-child(3) a').attr('href').split("=")[1];
if (bannedUsers.indexOf(userId) !== -1) {
this.remove();
}
}
});
}
parsePosts();
parseTopics();
This post was edited by Whao on Feb 8 2025 09:03am