// ==UserScript== // @name 简书取消外链跳转确认 // @namespace http://tampermonkey.net/ // @version 1.1.0 // @description 直接去掉a标签中的外链确认部分 // @author topcloud // @match *://www.jianshu.com/* // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== // 根据网速自己设置时间间隔 var waitTime = 5000; (function() { 'use strict'; setTimeout(function () { var aList = document.getElementsByTagName('a'); for (var i = 0; i < aList.length; ++i) { // 不带有跳转确认的链接 if (aList[i].href.indexOf('link.jianshu.com') == -1) { continue; } // 截取真实url var href = aList[i].href; var newUrl = href.substr(href.indexOf('=') + 1); // 解码并替换 aList[i].href = unescape(newUrl); } }, waitTime); })();