返回首頁 

Greasy Fork is available in English.

哔哩哔哩关注列表自动点击最常访问按钮

自动点击最常访问按钮


Installer dette script?
// ==UserScript==// @name         哔哩哔哩关注列表自动点击最常访问按钮// @namespace    http://tampermonkey.net/// @version      0.1// @description  自动点击最常访问按钮// @author       fengmas// @match        https://space.bilibili.com/*/relation/follow*// @match        https://space.bilibili.com/*/relation/follow?*// @match        https://space.bilibili.com/*/fans/follow?*// @match        https://space.bilibili.com/*/fans/follow*// @license       MIT// ==/UserScript==(function() {'use strict';// 等待页面完全加载window.addEventListener('load', function() {// 增加延迟,确保按钮已经渲染完成setTimeout(function() {// 使用选择器找到按钮var button = document.querySelector('.radio-filter__item:nth-child(2)');if (button) {console.log('按钮已找到,尝试点击');// 创建一个鼠标点击事件var event = new MouseEvent('click', {bubbles: true,cancelable: true,view: window});// 触发点击事件button.dispatchEvent(event);} else {console.log('按钮未找到');}}, 500); // 延迟0.5秒(根据打开网页快慢可自行调节)}, false);})();