web被拦截链接自动跳转,微信,掘金等

PC上使用浏览器点开微信链接,在提示非微信官方链接页面自动打开对应的链接

目前为 2023-07-13 提交的版本。查看 最新版本

// ==UserScript==
// @name         web被拦截链接自动跳转,微信,掘金等
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  PC上使用浏览器点开微信链接,在提示非微信官方链接页面自动打开对应的链接
// @author       huapeng222
// @match        https://weixin110.qq.com/*
// @match        https://link.juejin.cn/*
// @match        https://link.csdn.net/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    // 微信
    function winxin() {
        if (document.location.hostname !== "weixin110.qq.com") {
            return
        }
        const wechatTargets = document.getElementsByClassName("weui-msg__desc")
        let isWechatLink = false;
        let linkUrl = ""
        if (wechatTargets && wechatTargets.length > 0) {
            for (let i = 0; i< wechatTargets.length ;i++ ) {
                const e = wechatTargets[i];
                if (e.className === "ui-ellpisis weui-msg__desc") {
                    linkUrl = e.textContent;
                }
                if (e.textContent.indexOf("非微信官方网页") >= 0) {
                    isWechatLink = true;
                    break;
                }
            }
        }
        if (isWechatLink) {
            window.location.href = linkUrl;
        }
    }
    // 掘金
    function juejin() {
        if (document.location.hostname !== "link.juejin.cn") {
            return
        }
        const url = new URL(document.location.href)
        const linkUrl = url.searchParams.get("target")
        if (linkUrl && linkUrl.length > 0) {
            window.location.href = linkUrl;
        }
    }
    // csdn,https://link.csdn.net/
    function csdn() {
        if (document.location.hostname !== "link.csdn.net") {
            return
        }
        const url = new URL(document.location.href)
        const linkUrl = url.searchParams.get("target")
        if (linkUrl && linkUrl.length > 0) {
            window.location.href = linkUrl;
        }
    }
    winxin()
    juejin()
    csdn()
})();

QingJ © 2025

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