>>16868952nigga dis is the entire script
<reddit(function() {
'use strict';
setTimeout(() => {
const boardsList = document.getElementsByClassName("boardlist");
if(boardsList.length == 0) return;
for(const boards of boardsList) {
for(const sub of boards.children) {
for(const board of sub.children) {
board.href = board.href.replace("index", "catalog");
}
}
}
}, 100);
})();