您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动跳过QQ中间页面直接访问原始链接
// ==UserScript== // @name 绕过 QQ 已停止访问 // @namespace cpcqqcombypass // @version 1.0 // @description 自动跳过QQ中间页面直接访问原始链接 // @author Luke Zhang // @license GPL-3.0-or-later // @homepage https://github.com/win-lukezhang/cpcqqcombypass // @match *://c.pc.qq.com/* // @match *://c.pc.qq.com/ios.html* // @match *://c.pc.qq.com/android.html* // @match *://c.pc.qq.com/pc.html* // @icon https://www.qq.com/favicon.ico // @grant none // ==/UserScript== (function() { 'use strict'; // 获取URL参数函数 function getQueryParam(name) { const params = new URLSearchParams(window.location.search); return params.get(name); } // 主处理函数 function processRedirect() { const targetUrl = getQueryParam('url'); if (targetUrl) { // 解码可能被编码的URL const decodedUrl = decodeURIComponent(targetUrl); // 立即跳转(使用replace避免历史记录) window.location.replace(decodedUrl); } } // 执行处理 processRedirect(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址