Advertisement
_RayBoy_

transfer utm [Script]

May 6th, 2023
654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. var links = document.getElementsByTagName("a")
  3. for (let i of links) {
  4.     if (i.href.startsWith("https://salebot.site/")) {
  5.         if (i.href.split("?").length > 1) {
  6.             i.href += "&" + location.search.split("?")[1]
  7.         } else {
  8.             i.href += location.search
  9.         }
  10.     }
  11. }</script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement