POPCAT 自動點擊
当前为
// ==UserScript==
// @name POPCAT 自動點擊器
// @namespace http://tampermonkey.net/
// @version 1.2.0
// @description POPCAT 自動點擊
// @author 聖冰如焰
// @match https://popcat.click/
// ==/UserScript==
'use strict';
let event = new KeyboardEvent('keydown', {
key: 'g',
ctrlKey: true
});
let rundo = () => {
for (let i = 0; i < 1000; i++)
document.dispatchEvent(event);
requestAnimationFrame(rundo);
}
requestAnimationFrame(rundo);