Google don't open account in new tab

Replace target="_blank" links in account selector

  1. // ==UserScript==
  2. // @name Google don't open account in new tab
  3. // @namespace Google don't open account in new tab by C4illin
  4. // @description Replace target="_blank" links in account selector
  5. // @match https://*.google.com/*
  6. // @grant none
  7. // @version 1.1
  8. // @author C4illin <extension@emrik.org>
  9. // ==/UserScript==
  10.  
  11. setInterval(() => {
  12. let alist = document.querySelectorAll("a[target=_blank]")
  13. for (let i = 0; i < alist.length; i++) {
  14. alist[i].target = ""
  15. }
  16. }, 200)