規定時間後にランダムボタンを押すscript
説明
code:script.js
const clickRandomJumpButton = () => {
const button = document.querySelector('.random-jump-button.tool-btn.link-btn');
// ボタンが存在する場合はクリック
if (button) {
button.click();
}
};
// 初回実行
clickRandomJumpButton();
// 30秒ごとにボタンをクリック
setInterval(clickRandomJumpButton, 30 * 1000); // 30秒(30 * 1000ミリ秒)ごとに実行
謝辞:GPT-3.icon先生ありがとうcFQ2f7LRuLYP.icon