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