NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 简书替换url跳转 // @namespace http://tampermonkey.net/ // @version 1.1 // @description 干掉简书那个蛋疼的跳转二次确认 // @author You // @match https://www.jianshu.com/p/* // @grant none // @copyright 2021, 孤胆枪手 (https://openuserjs.org/users/孤胆枪手) // @license MIT // ==/UserScript== (function() { console.log("简书替换url跳转...") var jianshuGoUrl = 'https://links.jianshu.com/go?to='; Array.from(document.querySelectorAll('a'), item => item) .filter(item => item.href.indexOf(jianshuGoUrl) !== -1) .forEach(item => item.href = decodeURIComponent(item.href).replace(jianshuGoUrl, '')); })();