Greasy Fork is available in English.
2022/12/15 17:30:39
// ==UserScript== // @name B站自动点赞脚本 // @namespace Violentmonkey Scripts // @match https://www.bilibili.com/video/* // @grant none // @version 1.0 // @author -Anubis // @description 2022/12/15 17:30:39 // @license MIT // ==/UserScript== (function () { 'use strict'; setTimeout(function() { document.getElementsByClassName("like")[0].click(); }, 60000); })(); //(function(){})() 表示该函数立即执行