// ==UserScript== // @name CustomDesign // @match *://*/* // @grant none // @run-at document-end // ==UserScript== (function() { 'use strict'; const style = document.createElement('style'); style.textContent = ` a.box:has(div.stat > div.st-wrap > div.idv-icon) { background-color: #7D1E19 !important; } .idv-icon { display: inline-block !important; } `; (document.head || document.documentElement).appendChild(style); })();