等待动态页面加载好后,自动为第一页的所有动态点赞 (电脑端使用)
// ==UserScript== // @name bilibili.com 刷动态自动点赞 // @namespace https://greasyfork.org/zh-CN/scripts/424585 // @version 0.3 // @icon https://www.bilibili.com/favicon.ico // @description 等待动态页面加载好后,自动为第一页的所有动态点赞 (电脑端使用) // @author acbetter // @match https://t.bilibili.com/ // @run-at document-end // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js // @grant none // ==/UserScript== /* global $ */ dianzan(); function dianzan() { $(".custom-like-icon.zan").filter( function() { return( this.className.split(/\s+/).length == 2 ); } ).first().trigger('click'); setTimeout(dianzan, 5000); }