QQ Open Link Directly

点击 QQ 客户端中的链接后,自动跳转中转提示页 "当前网页非官方页面" 至原网址

目前為 2023-05-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name         QQ Open Link Directly
// @namespace    https://github.com/willbchang/userscript-qq-open-link-directly/
// @version      1.0.0
// @description  点击 QQ 客户端中的链接后,自动跳转中转提示页 "当前网页非官方页面" 至原网址
// @author       Will B Chang
// @match        *://c.pc.qq.com/middlem.html*
// @grant        none
// @license      AGPL-V3
// ==/UserScript==


(function() {
    'use strict';
    const url = new URL(window.location.href)
    const target = url.searchParams.get('pfurl')
    window.location.href = target;
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址