Quote (izParagonzi @ 7 May 2020 20:56)
Don't know much about user scripts, so, am I to assume (bad of me) that all those listed are "on" when you add it into chrome (still not sure how to add scripts to browser)?
The only thing I would want out of that list is to "Remove Item Compare", I actually use the arrows when I have a drink or cig in my left hand and navigate the catacomb with mouse. Also, it doesn't effect the "Auto Click Attack" (something like that) settings based on your settings? I have mine "on" (not ticked)?
Google Tampermonkey and get that for chrome
Then you click on the tampermonkey up rightside (should be next to URL search)

Create new script:
Code
// ==UserScript==
// @name Slashers Helper
// @namespace Slashers Helper
// @include http*://ladderslasher.d2jsp.org/*
// @grant none
// @version 3.1
// ==/UserScript==
function addGlobalStyle(css) {
var head;var style;
head = document.getElementsByTagName('head') [0];
if (!head) {return;}
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);}
addGlobalStyle('.itemBoxRight { display:none; border:1px solid red}');
That should be ONLY the comparison
This post was edited by NR1 on May 7 2020 03:35pm