Greasy Fork

在新标签页中打开链接

以在新标签页中打开链接

当前为 2023-12-09 提交的版本,查看 最新版本

// ==UserScript==
// @name         在新标签页中打开链接
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  以在新标签页中打开链接
// @author       wild
// @match        *://*/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    var links = document.getElementsByTagName('a');
    for(var i = 0; i < links.length; i++) {
        links[i].setAttribute('target', '_blank');
    }
})();