Greasy Fork is available in English.
AcFun直播点赞
当前为
// ==UserScript==
// @name AcFun Live Like
// @namespace http://tampermonkey.net/
// @version 1.0.2
// @description AcFun直播点赞
// @author 热心群众
// @match *://live.acfun.cn/live/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
window.setInterval(function () {
document.getElementsByClassName('like-btn')[0].click();
}, 1000 * 60 * 5);
})();