javascript:(function(){var likeBtn=document.querySelector('div[data-event-name="dianzan.0.show"]');if(likeBtn){var clickCount=0;function simulateClickAndSetUpNewTimer(){var clickEvent=new MouseEvent('click',{'view':window,'bubbles':true,'cancelable':true});likeBtn.dispatchEvent(clickEvent);clickCount++;console.log('已点击 '+clickCount+' 次。');var delay=Math.random()*500;setTimeout(simulateClickAndSetUpNewTimer,delay);if(clickCount>=10){console.log('已停止点击,已点击 '+clickCount+' 次。');}}simulateClickAndSetUpNewTimer();}else{console.error('没有找到具有指定data-event-name的div元素。');}})();Math.random()*500
这里可以修改“单击间隔”
单位是毫秒
默认 500毫秒内随机
