Open all links in a new tab
< 脚本 Open Links in New Tab 的反馈
You could also just add a <base target="_blank"> tag in the page's section. It'd cover all links, as well as form submissions, yet it'd respect links that have their own target attribute set.
<base target="_blank">
target
document.head.append(Object.assign(document.createElement('base'), { target: '_blank' }));
登录以发布留言。
You could also just add a
<base target="_blank">
tag in the page's section.It'd cover all links, as well as form submissions, yet it'd respect links that have their own
target
attribute set.