// ==UserScript== // @name 晋江文学城BBS清爽版本 // @namespace bbs.jjwxc.net // @version 0.2 // @description 白色主题,去广告,标记楼主; // @author chikango // @license chikango // @match https://bbs.jjwxc.net/* // @icon https://www.google.com/s2/favicons?domain=jjwxc.net // @grant none // @run-at document-body // @downloadURL none // ==/UserScript== (document.head || document.documentElement).insertAdjacentHTML('beforeend', ``); (function() { 'use strict'; document.querySelector("[border='2']")?document.querySelector("[border='2']").border = 0:''; let set = new Set(); document.querySelectorAll('.authorname font:nth-child(3)').forEach((element)=>{ set.add(element.innerText) }) let opId = Array.from(set)[0]; document.querySelectorAll('.authorname font:nth-child(3)').forEach((element)=>{ if(element.innerText===opId){ element.style.color = 'red'; element.innerText = element.innerText + ' (楼主)'; } }) })();