// ==UserScript== // @name QQ链接拦截自动跳转 // @namespace https://vivix.vip/ // @version 1.0 // @description 自动跳过腾讯QQ的链接拦截页面,直接访问目标网址 // @author 飞丶宇 // @match *://c.pc.qq.com/* // @grant none // ==/UserScript== (function() { 'use strict'; const currentUrl = new URL(window.location.href); const targetUrl = currentUrl.searchParams.get('url'); if (targetUrl) { const decodedUrl = decodeURIComponent(targetUrl); setTimeout(() => { window.location.href = decodedUrl; }, 500); } })();