#t123456 {display: none;}
// ==UserScript==// @name heyuri// @namespace filterstuff// @include *.heyuri.net/*// @version 1// @grant none// @run-at document-end// ==/UserScript=={ // Get board name from the current URL! let board = document.location.pathname.substring(1, document.location.pathname.indexOf("/",1)); // Get filters from the browser's local storage! let filters = localStorage.getItem("filters"); try { filters = JSON.parse(filters); } catch (e) {} // Fix the variable if it's invalid! if (!filters || typeof filters !== "object") filters = {}; // Make sure the filters object has an array for this board!