Guest User

Everflow Splash page google script

a guest
Sep 27th, 2023
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <script>
  2.  
  3. function updateLinks() {
  4. const TOP_LEVEL_DOMAIN = 'uvt9ntrk.com';
  5. const urlArgs = new URLSearchParams(window.location.search);
  6. const allLinks = document.getElementsByTagName('a');
  7.  
  8. for (let i = 0; i < allLinks.length; i++) {
  9. const link = allLinks[i];
  10. const href = link.href;
  11.  
  12. if (href.includes(TOP_LEVEL_DOMAIN)) {
  13. const separator = href.includes('?') ? '&' : '?';
  14. const newHref = href + separator + urlArgs.toString();
  15. link.href = newHref;
  16. }
  17. }
  18. }
  19.  
  20. updateLinks();
  21.  
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment