// ==UserScript== // @name 斗鱼自动抢鱼丸 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 自动抢鱼丸 // @author Chuck // @match https://www.douyu.com/* // @grant none // @downloadURL none // ==/UserScript== setInterval(function(){ if($(".peck-cdn").html()!="loading...") { console.log("发现礼物"); $(".cs-textarea").val("我抢鱼丸贼6!6666666"); $(".b-btn").click(); timer = setInterval(function(){ if($(".peck-cdn").html()=="领取") { $(".peck-cdn").click(); if($(".peck-cdn").html()=="loading...") clearInterval(timer); } },500); } console.log("等待礼物"); }, 10000);