Greasy Fork

Greasy Fork is available in English.

当前页面打开链接

通用

当前为 2024-06-20 提交的版本,查看 最新版本

// ==UserScript==
// @name     当前页面打开链接
// @description  通用
// @version    1
// @match     *
// @require    https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// @namespace http://greasyfork.icu/users/12375
// ==/UserScript==

(function() {  

$('form').attr('target','_self');

$('a').click(e=>e.currentTarget.target='_self');

setInterval(()=>$('a').attr('target','_self'));

unsafeWindow.open=url=>location.replace(url);

})();