稀土掘金重定向

跳过稀土掘金跳转提示

  1. // ==UserScript==
  2. // @name 稀土掘金重定向
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.0
  5. // @description 跳过稀土掘金跳转提示
  6. // @author share121
  7. // @match https://link.juejin.cn/?*target=*
  8. // @icon https://lf3-cdn-tos.bytescm.com/obj/static/xitu_juejin_web//static/favicons/favicon-32x32.png
  9. // @grant none
  10. // @run-at document-start
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. "use strict";
  16. if (/target=([^&]+)/.test(location.search)) {
  17. location.href = decodeURIComponent(
  18. location.search.match(/target=([^&]+)/)[1]
  19. );
  20. }
  21. })();

QingJ © 2025

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