// ==UserScript== // @name 所有超链接跳转新页面打开 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 将所有的连接变为点击跳转新页面打开 // @author BLT // @include * // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var doc = Array.prototype.slice.call(document.getElementsByTagName('a')); doc.map(function(item,index){ item.setAttribute("target", "_blank"); }) })();