// ==UserScript== // @name Catalogify boardlist // @namespace http://snca.net/ // @version 2026-07-30 // @description snca // @author You // @match https://soyjak.st/* // @icon https://www.google.com/s2/favicons?sz=64&domain=soyjak.st // @grant none // ==/UserScript== (function() { 'use strict'; const boardsList = document.getElementsByClassName("boardlist"); if(boardsList.length != 1) return; const boards = boardsList[0]; for(const sub of boards.children) { for(const board of sub.children) { board.href = board.href.replace("index", "catalog"); } } })();