您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
等待动态页面加载好后,自动为第一页的所有动态点赞 (电脑端使用)
当前为
// ==UserScript== // @name bilibili.com 刷动态自动点赞 // @namespace https://greasyfork.org/zh-CN/scripts/424585 // @version 0.1 // @icon https://www.bilibili.com/favicon.ico // @description 等待动态页面加载好后,自动为第一页的所有动态点赞 (电脑端使用) // @author 自制柠檬茶@bilibili // @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 $ */ (function() { 'use strict'; setTimeout(function(){ $(".custom-like-icon.zan").filter( function() { return( this.className.split(/\s+/).length == 2 ); } ).each(function(){ $(this).trigger('click'); }); }, 5000); })();