// ==UserScript== // @name NICO再生数大于800就加亮 // @namespace http://weibo.com/myimagination // @author @MyImagination // @version 0.8.2 // @homepageURL https://greasyfork.org/users/2805-myimagination // @description 搜索的时候自动高亮加粗显示再生高于800的 // @include http://*.nicovideo.jp/tag/* // @include http://*.nicovideo.jp/search/* // @license WTFPL // @run-at document-end // @downloadURL none // ==/UserScript== (function(){ $(".count.view").find("span").each(function(){ if(parseInt($(this).text().replace(/,/, "")) > 799){ $(this).css({"color":"red","font-weight":"bold"}); $(this).closest('.item','li').css({"background-color":"#E0E0E0"}); }}) })();