JumpDirectly

1. 链接直接跳转

  1. // ==UserScript==
  2. // @name JumpDirectly
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-06-03
  5. // @description 1. 链接直接跳转
  6. // @author popobaba
  7. // @license MIT
  8. // @match https://link.juejin.cn/?target=*
  9. // @match https://link.juejin.cn?target=*
  10. // @icon https://www.google.com/s2/favicons?sz=64&domain=juejin.cn
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. 'use strict';
  16. let targetUrl = decodeURIComponent(window.location.search.substring('?.target='.length - 1));
  17. window.location.href = targetUrl;
  18.  
  19. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址