>Oh shit! I forgot lb!!
-
install greasemonkey or tampermonkey
-
add this script
—
// UserScript
// @name 8ch highlight LB and PB automatically
// @version 1
// @grant none
// @include https://8ch.net/qresearch/*
// /UserScript
var postId = window.location.href.match(/\/(\d+).html/)[1];
var style = document.createElement('style');
style.innerHTML = `
a[href^="/qresearch/res/"]:not([href^="/qresearch/res/${postId}.html"]) {
background: #ffb;
}
`;
document.querySelector('head').appendChild(style);
—
results: lb and pb links are automatically highlighted, pic related
first attempt, but seems to be working well so far
next feature idea: fix loading of .jpeg images in previous breads (/CM/ what's up with that)