// ==UserScript== // @name 重定向链接 // @namespace http://www.example.com/ // @version 0.1 // @description 重定向链接到指定页面 // @match https://c.pc.qq.com/pc.html* // @grant none // ==/UserScript== (function() { var urlParam = new URLSearchParams(window.location.search); var targetUrl = decodeURIComponent(urlParam.get('url')); window.location.replace(targetUrl); })();