// ==UserScript== // @name highlight OP and Anon in wr // @namespace http://tampermonkey.net/ // @version 2025-02-11 // @description // @author You // @include https://2ch.hk/wr* // @include https://2ch.life/wr* // @grant none // @run-at document-body // ==/UserScript== (function() { 'use strict'; const arr = Array.from(document.querySelectorAll('.post__anon')) arr.filter(el => el.textContent == 'Аноним').forEach(el => el.parentNode.parentNode.parentNode.style.borderLeft = '2px solid yellow') arr.filter(el => el.textContent == 'ОП').forEach(el => el.parentNode.parentNode.parentNode.style.borderLeft = '2px solid red') })();