该脚本可以给所有的网站的a标签的点击行为都变为打开新窗口
脚本代码如下
// ==UserScript==
// @name openNewWindow
// @namespace https://hxyxyz.top/
// @version 0.1
// @description 每个a标签的点击行为都为打开新窗口
// @author 禾下月
// @require https://cdn.staticfile.org/jquery/3.4.1/jquery.min.js
// @match http://*/*
// @match https://*/*
// ==/UserScript==
$(document).ready(function () {
$('head').append('<base target="_blank">');
});
版权属于:小小窝/禾下月
本文链接:https://hxyxyz.top/index.php/Web/317.html
本站文章采用 知识共享署名4.0 国际许可协议 进行许可,请在转载时注明出处及本声明!