您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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, "")); })();