tophub&greasyfork新标签页打开

链接从新标签页打开

  1. // ==UserScript==
  2. // @name tophub&greasyfork新标签页打开
  3. // @namespace mine.com
  4. // @description 链接从新标签页打开
  5. // @match *://tophub.today/*
  6. // @match *://gf.qytechs.cn/zh-CN/scripts*
  7. // @version 1.0.2
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. document.querySelectorAll('a').forEach(item => {
  12. //不给空href和greasyfork的page页加_blank
  13. if(!/javascript/.test(item.href) && !/page/.test(item.href)) {
  14. item.setAttribute('target','_blank');
  15. }
  16. });
  17. })();

QingJ © 2025

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