5 lines
169 B
JavaScript
5 lines
169 B
JavaScript
(function() {
|
|
for (const link of document.getElementsByTagName('a')) {
|
|
if (/^(https?:)?\/\//.test(link.getAttribute('href'))) link.target = '_blank';
|
|
}
|
|
})(); |