|  | 
 
| ## 自动点赞 **步骤:**
 1. 打开要点赞的帖子
 2. 打开浏览器控制台
 3. 粘贴下方代码并回车运行
 ```javascript
 // 模拟延迟
 const sleep = (delay) => new Promise(resolve => setTimeout(resolve, delay));
 // 获取随机延迟时间
 const getRandomDelay = (min = 1000, max = 5000) => Math.floor(Math.random() * (max - min + 1)) + min;
 // 点击点赞按钮
 const _reactionDomsClick = async (clickCount = 50) => {
 let totalClicks = 0;
 while (totalClicks = clickCount) break;
 await sleep(getRandomDelay());
 b.scrollIntoView(true);
 b.click();
 totalClicks++;
 }
 window.scrollBy(0, window.innerHeight);
 await sleep(getRandomDelay());
 }
 console.log(`已完成 ${totalClicks} 次点赞。`);
 };
 _reactionDomsClick(50);
 ```
 **效果:**
 (图片展示)
 | 
 |