// ==UserScript== // @name 斗鱼自动回复,可重复回复(刷屏) // @namespace http://tampermonkey.net/ // @version 0.1 // @description 斗鱼自动回复,自定义时间,次数,回复内容! // @author Pi7bo1 // @match https://www.douyu.com/* // @grant none // @supportURL woxianshouboxian@163.com // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... var count = 0; window.woshinidie = function(text,time){ var stext = text || new Date(); var timer = time || 5; count += 1; document.getElementById('js-send-msg').querySelectorAll('.cs-textarea')[0].value = (count%2 == 0 ? "‍" : "") + stext; var e = document.createEvent("MouseEvents"); e.initEvent("click", true, true); document.getElementById('js-send-msg').querySelectorAll('.b-btn')[0].dispatchEvent(e); console.log('当前共发送' + count + "条弹幕"); setTimeout(window.woshinidie,timer * 1000,stext,timer); } })();