POPCAT 自動點擊器

POPCAT 自動點擊

目前為 2021-08-13 提交的版本,檢視 最新版本

// ==UserScript==
// @name         POPCAT 自動點擊器
// @namespace    http://tampermonkey.net/
// @version      1.1.0
// @description  POPCAT 自動點擊
// @author       聖冰如焰
// @match        https://popcat.click/
// ==/UserScript==

'use strict';
let Stop = false;
let event = new KeyboardEvent('keydown', {
    key: 'g',
    ctrlKey: true
});
let rundo = () => {
    if (!Stop) {
        for (let i = 0; i < 1000; i++)
            document.dispatchEvent(event);
    };
    requestAnimationFrame(rundo);
}
requestAnimationFrame(rundo);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址