沒想到有台灣作者吧
// ==UserScript==
// @name 最穩popcat click腳本
// @namespace http://tampermonkey.net/
// @version V1
// @description 沒想到有台灣作者吧
// @author 寂寞0.0
// @match https://popcat.click/
// @grant none
// ==/UserScript==
var event = new KeyboardEvent('keydown', {
key: 'g',
ctrlKey: true
});
setInterval(function(){
for (var a = 0; a < 120; a++) {
document.dispatchEvent(event);
}
}, 0);