2021/8/29 下午6:46:14
// ==UserScript==
// @name 拒绝QQ拦截外部链接 - qq.com
// @namespace Violentmonkey Scripts
// @match https://c.pc.qq.com/middlem.html
// @grant none
// @version 1.0
// @author dianhsu
// @license MIT
// @description 2021/8/29 下午6:46:14
// ==/UserScript==
(function(){
'use strict';
//console.log(window.location.href)
let searchParams = new URLSearchParams(window.location.search);
let reqUrl = searchParams.get("pfurl");
if(!!reqUrl){
window.location.href = reqUrl;
}
})();