禁止打开网页跳转新标签

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

目前為 2020-07-11 提交的版本,檢視 最新版本

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

(function() {
    'use strict';

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

})();