知乎-直接跳转

屏蔽知乎安全中心,直接跳转链接地址。

目前为 2020-08-05 提交的版本。查看 最新版本

// ==UserScript==
// @name         知乎-直接跳转
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  屏蔽知乎安全中心,直接跳转链接地址。
// @author       CeeYang
// @author       zl7261
// @match        https://*.zhihu.com/*
// @grant        none
// @license      GPLv3
// ==/UserScript==

// forked from https://gf.qytechs.cn/zh-CN/scripts/396857
// changelog:
// 2020-08-06:  improve performance
//               更新domApi 直接查询有href属性的a标签 使用observerApi而非监听scroll事件

(function () {
    'use strict';


    /// 地址类型
    /// https://link.zhihu.com/?target=http%3A//www.test.com

    /// 获取所以a标签
    /// 循环判断 a 标签是否包含两个 http 字样
    /// 截取最后一个 http 内容

    const observer = new ResizeObserver(entries => {
        for (const entry of entries) {
            // each entry is an instance of ResizeObserverEntry
            getOriginHref();
        }
    })

    observer.observe(document.querySelector('body'))


    /// 获取正确的地址用于跳转
    function getOriginHref() {
        var zhihuPrefix = "link.zhihu.com"
        var documents = document.querySelectorAll('.ListShortcut a[href]');
        for (var i = 0; i < documents.length; i++) {
            if (documents[i].href.indexOf(zhihuPrefix) != -1) {
                documents[i].setAttribute("href", decodeURIComponent(documents[i].href.split("target=")[1]))
            }
        }
    }

})();

QingJ © 2025

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