8位数QQ官方注册过滤法

Home / Article 百晓生 2018-12-19 2650

腾讯现在真的是见钱就收,8位的QQ高价大甩卖。PC、手机端都有开放注册,手机端还能一键买断。那么问题来了,怎么挑出其中不带 4 的号码呢(国人不喜欢4,外国人喜欢four)?

第一步、打开 https://haoma.qq.com

第二步、Windows 右键点击审查元素,Mac 右键点击检查

第三步、点击 console,粘贴下面的代码

;(async (...without) => {
  let list = []
  for (const n of Array.from({ length: 10 }, (v, i) => 1 + i)) {
    await window
      .fetch(`https://haoma.qq.com/json/act${n}.json.js`)
      .then(r => r.text())
      .then(r => JSON.parse(r.slice(16, -1)))
      .then(r => r[2].map(v => list.push(v.num)))
  }
  list = [...new Set(list.sort())]
  without = [...new Set(without)]
  console.clear()
  console.log('%c已找到的所有 8 位 QQ 号为:', 'font-weight: bold; color: red')
  console.log(list.join(', ') || '暂无')
  if (without.length) {
    list = list.filter(v => !new RegExp(`(${without.join('|')})`).test(v))
    console.log(
      '%c其中不带 %s 的 QQ 号为:',
      'font-weight: bold; color: red',
      without.join('、')
    )
    console.log(list.join(', ') || '暂无')
  }
})(4)

4为要排除的数字,多个用 , 隔开

这时候你会在控制台 (console) 看到类似这种提示:

针对你心仪的号码,你可以通过这个链接去注册:

https://haoma.qq.com/pay_v2.html?num=QQ&type=10061&month=12&price=0&actid=30003&viptype=1&trackid=50001

记得把其中 num=QQ 改成要注册的 QQ 号。


本文链接:https://www.it72.com/12451.htm

推荐阅读
最新回复 (0)
返回