Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // ==UserScript==
  2. // @name No New Tabs
  3. // @match *
  4. // @grant none
  5. // ==/UserScript==
  6.  
  7. (function() {
  8. document.querySelectorAll('a[target]').forEach((link) => {
  9. link.setAttribute('target', '_self');
  10. link.setAttribute('rel', 'noopener noreferrer');
  11. });
  12.  
  13. document.querySelectorAll('base[target]').forEach((base) => {
  14. base.setAttribute('target', '_self');
  15. });
  16. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement