// ==UserScript== // @name V2EX红心 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match http://*/* // @include https://*.v2ex.com/* // @include https://v2ex.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { document.querySelectorAll('span').forEach(item => { if("small fade"==item.className) { item.style.color="red"; } }); })();