hostloc每日签到

我这谷歌浏览器油猴插件不好用,火狐就可以。。

(function() {
  // 开始从哪一个MJJ开始访问,论坛的UID
  const userIdStart = 4

  // 最多访问几个MJJ
  const maxCheckNum = 15

  // 访问一个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)
    }
  }
})()
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!无需注册,过短或乱码评论会被屏蔽。
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容