Greasy Fork is available in English.

自动跳转各类外链跳转页到目的地址

自动跳转以下各类外链跳转页到目的地址,包括 QQ、微信所谓“非官方页面”等

// ==UserScript==
// @name        自动跳转各类外链跳转页到目的地址
// @description 自动跳转以下各类外链跳转页到目的地址,包括 QQ、微信所谓“非官方页面”等
// @author      AnnAngela
// @version     1.5.0
// @mainpage    https://greasyfork.org/scripts/446839
// @supportURL  https://greasyfork.org/scripts/446839/feedback
// @match       *://c.pc.qq.com/*
// @match       *://docs.qq.com/scenario/link.html*
// @match       *://afdian.net/link*
// @match       *://weixin110.qq.com/cgi-bin/mmspamsupport-bin/newredirectconfirmcgi*
// @match       *://t.cn/*
// @match       *://www.jianshu.com/go-wild*
// @match       *://link.csdn.net/*
// @match       *://link.zhihu.com/*
// @match       *://jump2.bdimg.com/safecheck/index*
// @match       *://link.juejin.cn/*
// @match       *://www.google.com/url?*
// @run-at      document-start
// @license     GNU General Public License v3.0 or later
// @namespace https://greasyfork.org/users/129402
// ==/UserScript==
"use strict";
const hide = () => {
    try {
        document.documentElement.style.display = "none";
        document.title = "跳转中……";
    } catch { }
};
const searchParams = new URL(location.href).searchParams;
const normalTargets = [
    {
        snippets: [
            "c.pc.qq.com/middle.html",
            "c.pc.qq.com/middlem.html",
            "c.pc.qq.com/index.html",
        ],
        searchParamName: "pfurl",
    },
    {
        snippets: [
            "docs.qq.com/scenario/link.html",
            "jianshu.com/go-wild",
        ],
        searchParamName: "url",
    },
    {
        snippets: [
            "afdian.net/link",
            "link.csdn.net/?target=",
            "link.zhihu.com/?target=",
            "link.juejin.cn/?target=",
        ],
        searchParamName: "target",
    },
    {
        snippets: [
            "www.google.com/url?",
        ],
        searchParamName: "q",
    },
];
const plaintextTargets = [
    {
        snippets: [
            "t.cn/",
        ],
        selector: ".url_view_code",
    },
    {
        snippets: [
            "jump2.bdimg.com/safecheck/index",
        ],
        selector: ".link",
    },
    {
        snippets: [
            "www.google.com/url?",
        ],
        selector: "a[href]:not(id)",
    },
];
for (const { snippets, searchParamName } of normalTargets) {
    for (const snippet of snippets) {
        if (location.href.includes(snippet)) {
            hide();
            location.replace(searchParams.get(searchParamName));
            break;
        }
    }
}
for (const { snippets, selector } of plaintextTargets) {
    for (const snippet of snippets) {
        if (location.href.includes(snippet)) {
            let flag = false;
            hide();
            setInterval(() => {
                const url_view_code = unsafeWindow.document.querySelector(selector);
                if (!flag && url_view_code) {
                    try {
                        const url = new URL(url_view_code.innerText);
                        flag = true;
                        location.replace(url);
                    } catch { }
                }
            }, 100);
        }
    }
}
if (location.href.includes("c.pc.qq.com/ios.html")) {
    const obj = Object.fromEntries(new URL(location.href.replace(/%2F(?=&(?:sub)?level)/g, "")).searchParams);
    Reflect.deleteProperty(obj, "level");
    Reflect.deleteProperty(obj, "sublevel");
    const newUrl = new URL(obj.url);
    for (const [k, v] of Object.entries(obj)) {
        if (k !== "url") {
            newUrl.searchParams.append(k, v);
        }
    }
    hide();
    location.replace(newUrl);
}
if (location.href.includes("weixin110.qq.com/cgi-bin/mmspamsupport-bin/newredirectconfirmcgi")) {
    let flag = false;
    setInterval(() => {
        if (!flag && Reflect.has(unsafeWindow.cgiData || {}, "url")) {
            hide();
            flag = true;
            location.replace(new DOMParser().parseFromString(unsafeWindow.cgiData.url, "text/html").documentElement.textContent);
        }
    }, 100);
}