Greasy Fork

Greasy Fork is available in English.

evernote 链接直跳

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

目前为 2020-02-28 提交的版本,查看 最新版本

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

(function() {
    'use strict';

    document.location = decodeURIComponent(document.location.search.replace("?dest=", ""));
})();