if you want a bit more QoL that other generals figured out, this put into settings and CSS makes your (You)s and own posts stand out
.youName { color: red; }
.you { --link-color: red; }
.innerPost:has(a.youName) { border-left: dotted 0.3em red;}
.innerPost:has(a.you) { border-left: solid 0.3em red;}
and this one is for visible spoiler instead of needing to click them (or hover if you activated that) put it into JS in settings
const revealSpoilers = function() {
const spoilers = document.querySelectorAll(".imgLink > img[src='/spoiler.png']");
spoilers.forEach(spoiler => {
const parent = spoiler.parentElement;
const hrefTokens = parent.href.split("/");
const fileNameTokens = hrefTokens[4].split(".");
const thumbUrl = `/.media/8t_${fileNameTokens[0]}`;
spoiler.src = thumbUrl;
spoiler.style.border = "thin dotted red";
});
}
setInterval(revealSpoilers, 1000);