Created
February 17, 2025 00:01
-
-
Save RollingHog/51e930094d16a565087dbd03e3a8ec5a to your computer and use it in GitHub Desktop.
Revisions
-
RollingHog created this gist
Feb 17, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ // ==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') })();