Greasy Fork is available in English.

禁止打开网页跳转新标签

禁止打开网页跳转新标签 使其在当前标签进行跳转

// ==UserScript==
// @name         禁止打开网页跳转新标签
// @namespace    https://www.acy.moe
// @supportURL   https://www.acy.moe
// @version      0.2
// @description  禁止打开网页跳转新标签 使其在当前标签进行跳转
// @author       NEET姬
// @include         http://*
// @include         https://*
// @match             *://*/*
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
$('a[target="_blank"]').removeAttr('target');

})();