直播间自动点赞
// ==UserScript==
// @name Acfun自动点赞
// @description 直播间自动点赞
// @version 0.0.0.1
// @author A
// @match https://live.acfun.cn/live/*
// @run-at document-start
// @license GNU General Public License v3.0 or later
// @namespace https://greasyfork.org/zh-CN/users/685098-sroe-a
// ==/UserScript==
setInterval(function (){
document.getElementsByClassName('like-btn')[0].click()
},1000);