链接新标签页打开

设置链接新标签页打开

// ==UserScript==
// @name        链接新标签页打开
// @namespace   Violentmonkey Scripts
// @match       http://*/*
// @match       https://*/*
// @grant       none
// @version     1.1
// @author      liang
// @grant       unsafeWindow
// @description 设置链接新标签页打开
// ==/UserScript==
(function(){
  'use strict';
  var a = document.getElementsByTagName('a')
  for(var i = 0;i < a.length - 1 ;i++){
    a[i].setAttribute('target','_blank');
  }
})();

QingJ © 2025

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