// ==UserScript== // @name NGA显示踩 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://bbs.ngacn.cc/read.php* // @grant none // @downloadURL none // ==/UserScript== for (var key in commonui.postArg.data){ var ll = document.getElementById('postcontentandsubject'+key); if(ll === null) { ll= document.getElementById('postcommentcontentandsubject'+key); } if(ll===null){ ll= document.getElementById('postcomment_'+key); } il = ll.getElementsByClassName('white'); for (var i = 0; i < il.length; i++){ if(il[i].getAttribute('title') == '支持'){ var span = document.createElement('span'); span.innerHTML='赞:'+commonui.postArg.data[key].score+' 踩:'+commonui.postArg.data[key].score_2; var par=il[i].parentNode; par.insertBefore(span,il[i]); } } }