evernote、zhihu 中转链接直跳

evernote 网页版点击链接中转页自动跳转

// ==UserScript==
// @name         evernote、zhihu 中转链接直跳
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  evernote 网页版点击链接中转页自动跳转
// @author       You
// @include      https://www.evernote.com/OutboundRedirect.action?dest=*
// @include      https://app.yinxiang.com/OutboundRedirect.action?dest=*
// @include      https://link.zhihu.com/?target=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var link = document.location + "";
    var key = "?dest=";
    if (link.indexOf("zhihu")>-1) {
        key = "?target=";
    }
    document.location = decodeURIComponent(document.location.search.replace(key, ""));
})();

QingJ © 2025

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