// ==UserScript== // @name 在新标签页中打开链接 // @namespace http://tampermonkey.net/ // @version 1.1.0 // @description 以在新标签页中打开链接 // @author wild // @match *://*/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var links = document.getElementsByTagName('a'); if(window.location.href.indexOf('csdn')!==-1){ for (let i = 0; i < links.length; i++) { let idAncestor = links[i].closest('[id="toolbarBox"]'); if (!idAncestor) { links[i].setAttribute('target', '_blank'); } } }else if(window.location.href.indexOf('github')){ for(let i = 0;i