// ==UserScript== // @name 在新标签页中打开链接 // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description 以在新标签页中打开链接 // @author wild // @match *://*/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var links = document.getElementsByTagName('a'); for(var i = 0; i < links.length; i++) { links[i].setAttribute('target', '_blank'); } })();