以新标签打开超链接
// ==UserScript==
// @name 新标签打开超链接
// @namespace http://www.skji.net/
// @version 0.1
// @description 以新标签打开超链接
// @author 及
// @match *://*/*
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
var head = document.head || document.getElementsByTagName('head')[0];
var base = document.createElement('base');
base.target = "_blank";
head.appendChild(base);
})();