Hostloc签到JS代码
侧边栏壁纸
  • 累计撰写 142 篇文章
  • 累计收到 3 条评论

Hostloc签到JS代码

phon
2021-03-28 / 0 评论 / 51 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2021年04月05日,已超过911天没有更新,若内容或图片失效,请留言反馈。

浏览器按F12,把代码丢进去按回车

(function() {
  // 开始从哪一个MJJ开始访问,论坛的UID
  const userIdStart = 1
  // 最多访问几个MJJ
  const maxCheckNum = 10
  // 访问一个MJJ后,休息几秒
  const restSeconds = 3
  let counting = 0
  autoCheckIn()
  function autoCheckIn() {
    const userProfileUrl = `https://hostloc.com/space-uid-${userIdStart + counting++}.html`
    console.log(`正在访问第${counting}个MJJ: ${userProfileUrl}`)
    const img = new Image()
    img.src = userProfileUrl   
    if (counting < maxCheckNum) {
      setTimeout(autoCheckIn, restSeconds * 1000)
    }
  }
})()
0

评论 (0)

取消