massgrave.dev/links.js

5 lines
169 B
JavaScript
Raw Normal View History

2023-03-17 01:09:16 +07:00
(function() {
for (const link of document.getElementsByTagName('a')) {
if (/^(https?:)?\/\//.test(link.getAttribute('href'))) link.target = '_blank';
}
2023-01-11 18:19:43 +07:00
})();