Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/7d0f569318177a0f0510122427c42115.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name NICO再生数大于800就加亮
// @namespace http://weibo.com/myimagination
// @author @MyImagination
// @version 0.8.3
// @homepageURL https://greasyfork.org/users/2805-myimagination
// @description 搜索的时候自动高亮加粗显示再生高于800的
// @include http://*.nicovideo.jp/tag/*
// @include http://*.nicovideo.jp/search/*
// @include https://*.nicovideo.jp/tag/*
// @include https://*.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"});
}});
})();