// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.location = decodeURIComponent(document.location.search.replace("?dest=", "")); })();