Last active
December 21, 2015 11:49
-
-
Save ssig33/6301846 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name rate1 only on kakaku.com's review | |
// @include http://review.kakaku.com/review/* | |
// @description 価格.comのレビューで満足度が 1 のものだけ表示 | |
// ==/UserScript== | |
jQuery(function(){ | |
jQuery.each(['2','3','4','5'], function(k,v){ | |
jQuery.each(jQuery('#mainLeft div div div div div div div div table.total tr td.rate'+v), | |
function(k,v){ | |
jQuery(v).parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().hide(); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
user.js インストールしたくなければ、ブラウザのコンソールから
jQuery.each(['2','3','4','5'], function(k,v){jQuery.each(jQuery('#mainLeft div div div div div div div div table.total tr td.rate'+v),function(k,v){jQuery(v).parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().hide();});});
を実行するのでもいいです。