跳过腾讯的管家拦截页面
// ==UserScript==
// @name 跳过 管家拦截页面
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 跳过腾讯的管家拦截页面
// @author Epix
// @match https://c.pc.qq.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
location.href=new URLSearchParams(location.search.substring(1)).get('pfurl');
})();