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