您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Shows comments that are under rating threshold
当前为
- // ==UserScript==
- // @name Show Hidden Comments
- // @description Shows comments that are under rating threshold
- // @include http://www.kongregate.com/games/*
- // @version 0.0.1.20160829231542
- // @namespace https://greasyfork.org/users/32649
- // ==/UserScript==
- (function(){
- var count = 0;
- (function(){
- var all = document.evaluate("//span[@class='comment_content'][contains(@style,'display')][contains(@style,'none')]", document, null, 7, null);
- for (var i = 0, item; item = all.snapshotItem(i); i++) {
- item.style.display = 'block';
- item.style.color = '#999';
- }
- if (count++ < 10) {
- setTimeout(arguments.callee, 500);
- }
- }());
- }());