// ==UserScript== // @name PINE64 forum sanity // @namespace http://forum.pine64.org/ // @version 0.1 // @description Better thread icons // @author Martijn Braam // @match https://forum.pine64.org/* // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle ( ` .thread_status.dot_hotfolder:after, .thread_status.hotfolder:after { color: #2969b1; } ` ); })();