Greasy Fork is available in English.

所有超链接跳转新页面打开

将所有的连接变为点击跳转新页面打开

// ==UserScript==
// @name         所有超链接跳转新页面打开
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  将所有的连接变为点击跳转新页面打开
// @author       BLT
// @include      *
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var doc = Array.prototype.slice.call(document.getElementsByTagName('a'));
    doc.map(function(item,index){
        item.setAttribute("target", "_blank");
    })
})();