1. 链接直接跳转
// ==UserScript==
// @name JumpDirectly
// @namespace http://tampermonkey.net/
// @version 2025-06-03
// @description 1. 链接直接跳转
// @author popobaba
// @license MIT
// @match https://link.juejin.cn/?target=*
// @match https://link.juejin.cn?target=*
// @icon https://www.google.com/s2/favicons?sz=64&domain=juejin.cn
// @grant none
// ==/UserScript==
(function () {
'use strict';
let targetUrl = decodeURIComponent(window.location.search.substring('?.target='.length - 1));
window.location.href = targetUrl;
})();