B站全自动点赞动态脚本

全自动点赞B站动态

目前为 2022-01-29 提交的版本。查看 最新版本

// ==UserScript==
// @name         B站全自动点赞动态脚本
// @namespace    https://github.com/lqmoe/bilibili
// @version       0.2
// @description  全自动点赞B站动态
// @author       绫浅
// @icon         https://static.hdslb.com/images/favicon.ico
// @match        *://t.bilibili.com/*
// @grant        none
// @run-at       document-start
// @license      MIT
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// ==/UserScript==

/* global $ */

dianzan();
function dianzan() {
    $(".custom-like-icon.zan").filter(
        function() {
            return( this.className.split(/\s+/).length == 2 );
        }
    ).first().trigger('click');
    setTimeout(dianzan, 1000);//点赞间隔时间,以毫秒为单位
}

shuaxin();
function shuaxin() {
    let time=30000;//刷新界面间隔时间,以毫秒为单位
    setTimeout(() => {
        location.reload()
    },time);
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址