// ==UserScript== // @name yiban // @namespace http://tampermonkey.net/ // @version 0.1 // @description 这是一个用于刷评论的脚本,如果你比较懒得刷评论的话 // @author 莫馥源 // @match https://q.yiban.cn/app/index/appid/* // @require https://code.jquery.com/jquery-3.4.1.min.js // @grant none // @downloadURL none // ==/UserScript== $(function(){ function my(){ // 这里写上要评论的内容,如果你想随机评论内容,可以加一个数组,或者获取别人的评论内容 $("textarea").val("经管加油,易班加油,大家元旦快乐啊!!!") $(".comment-submit").attr('id','new_id') $("button#new_id").click() } // 这里是评论的速度,6000=6秒 setInterval(my,6000) })