var buttons = document.getElementsByClassName("next_button___YGZWZ");
setInterval(function() {
    var button = buttons[0];
    if(typeof(button) != 'undefined'){
        console.log("next chapter!!!")
        button.click();
    }
},5000);
var outters = document.getElementsByClassName("outter");
setInterval(function() {
    var playing = document.getElementsByClassName("prism-big-play-btn");
    var attr = playing[0].getAttribute('class');
    if(attr.indexOf('playing') < 0){
        var outter = outters[0];
        if(typeof(outter) != 'undefined'){
            console.log("video start!!!")
            outter.click();
        }
    }
},5000);
setInterval(function() {
    var ant = document.getElementsByClassName("ant-btn-primary");
    if(ant.length != 0){
        ant[0].click();
    }
},5000);

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-15
  • 2021-08-02
  • 2022-02-27
  • 2021-12-07
  • 2022-01-18
  • 2021-12-19
猜你喜欢
  • 2022-01-31
  • 2022-01-12
  • 2021-09-25
  • 2021-04-27
  • 2022-01-16
  • 2021-12-01
相关资源
相似解决方案