所有超链接跳转新页面打开

将所有的连接变为点击跳转新页面打开

// ==UserScript==
// @name         所有超链接跳转新页面打开
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  将所有的连接变为点击跳转新页面打开
// @author       BLT
// @include      *
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var doc = Array.prototype.slice.call(document.getElementsByTagName('a'));
    doc.map(function(item,index){
        item.setAttribute("target", "_blank");
    })
})();

QingJ © 2025

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