Greasy Fork is available in English.

去除知乎中间跳转

去除知乎烦人的中间跳转确认

// ==UserScript==
// @name        去除知乎中间跳转
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  去除知乎烦人的中间跳转确认
// @author       Eric
// @match        https://*.zhihu.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zhihu.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    document.querySelectorAll("a[href^='https://link.zhihu.com']")
        .forEach(function(v){
        v.setAttribute('href', decodeURIComponent(v.getAttribute('href').replace('https://link.zhihu.com/?target=', '')))
    })
})();