Greasy Fork is available in English.

Google超链接从空白标签打开

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

Tính đến 07-01-2018. Xem phiên bản mới nhất.

// ==UserScript==
// @name         Google超链接从空白标签打开
// @namespace    https://github.com/yeomanye
// @version      0.3.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');
    }
})();