直接跳转
// ==UserScript== // @name QQ 中转页直接跳转 // @namespace mscststs // @version 0.2 // @description 直接跳转 // @author mscststs // @match https://c.pc.qq.com/middlem.html?pfurl=* // @icon https://www.google.com/s2/favicons?sz=64&domain=qq.com // @run-at document-start // @license ISC // @grant none // ==/UserScript== (function() { 'use strict'; let f =new URL(location.href).searchParams.get("pfurl"); if(f.startsWith("http")){ location.href = f; }else{ location.href = "http://"+f; } })();