Google超链接从空白标签打开

点击google超链接从新标签页打开

As of 2017-12-12. See the latest version.

// ==UserScript==
// @name         Google超链接从空白标签打开
// @namespace    https://github.com/yeomanye
// @version      0.2.1
// @description  点击google超链接从新标签页打开
// @author       Ming Ye
// @match        https://www.google.com
// @include      https://www.google*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var links = document.getElementsByTagName('a');
    for(var i=0,len=links.length;i<len;i++){
        links[i].setAttribute('target','_blank');
    }
})();