// ==UserScript== // @name 逆熵anti // @namespace null. // @version 0.0.1 // @description null. // @author null. // @match *://event.bh3.com/* // @charset UTF-8 // @grant none // @require https://cdn.bootcss.com/jquery/2.0.0/jquery.min.js // @downloadURL none // ==/UserScript== // (function() { var si = 0 $('body').append('') $('body').append('
') var fnn_t = 300 var fnn = function () { var nextFn = function() { setTimeout(fnn, fnn_t) } if ($('.main .cg').css('display') == 'block') { setTimeout(function() { $('.main .cg').click() nextFn() }, 300) } else { if ($('.remark_btn').css('opacity') == '1') { $('.remark_btn').click() setTimeout(function() { $('.home_btn.home_btn_remark').click() setTimeout(function() { $('#character-center').click() nextFn() }, 300) }, 300) } else { $('#character-center').click() nextFn() } } } $('.ns button').click(function() { if($(this).html() == '自动播放 off') { fnn_t = 300 fnn() $(this).html('自动播放 on') } else { fnn_t = 99999999 $(this).html('自动播放 off') } }) })()