您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Clear comments list.
当前为
// ==UserScript== // @name Bihu CommentList // @namespace https://bihu.com/people/112225 // @version 0.1 // @description Clear comments list. // @author Riley Ge // @match https://bihu.com/article/* // @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js // @grant none // ==/UserScript== (function() { var clks2 = setInterval(function(){ var comments = $("div.row.comment-info"); //allitems += comments.length; comments.each(function() { //var innerText = $(this).find("p.first-comment-content").text().length; if($(this).find("p.first-comment-content").text().length < 5) //deleteditems++; $(this).remove(); }); },3000); })();