我这谷歌浏览器油猴插件不好用,火狐就可以。。
(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
暂无评论内容