Greasy Fork is available in English.
以在新标签页中打开链接
当前为
// ==UserScript==
// @name 在新标签页中打开链接
// @namespace http://tampermonkey.net/
// @version 1.0.0
// @description 以在新标签页中打开链接
// @author wild
// @match *://*/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var links = document.getElementsByTagName('a');
for(var i = 0; i < links.length; i++) {
links[i].setAttribute('target', '_blank');
}
})();