POPCAT 自動點擊器

POPCAT 自動點擊

Verze ze dne 13. 08. 2021. Zobrazit nejnovější verzi.

// ==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);