偶然在知乎上看到的,亲试好用,原封不动的放在这,造福更多有缘看到的人❤

// ==UserScript==

// @grant        none

// ==/UserScript==

'use strict';

var s = document.createElement('script');

s.setAttribute(

'src',

'https://lib.sinaapp.com/js/jquery/2.0.3/jquery-2.0.3.min.js'

);

s.onload = function() {

setInterval(function() {

if (!$('a[action-type="feed_list_delete"]')) {

$('a.next').click();

} else {

$('a[action-type="feed_list_delete"]')[0].click();

$('a[action-type="ok"]')[0].click();

}

// scroll bottom let auto load

$('html, body').animate({ scrollTop: $(document).height() }, 'slow');

}, 800);

};

 

 

相关文章:

  • 2021-05-18
  • 2021-12-10
  • 2021-11-30
  • 2021-07-21
  • 2021-09-24
  • 2022-02-08
  • 2021-07-24
猜你喜欢
  • 2022-03-07
  • 2022-01-27
  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
  • 2021-12-26
  • 2021-06-08
相关资源
相似解决方案