Greasy Fork

Greasy Fork is available in English.

AcFun Live Like

AcFun直播点赞

目前为 2020-09-11 提交的版本。查看 最新版本

// ==UserScript==
// @name         AcFun Live Like
// @namespace    http://tampermonkey.net/
// @version      1.0.1
// @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);
})();