Rohax

fdsfsdfsdfsd

Aug 21st, 2021
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. // ==UserScript==
  2. // @name krnl and linkvertise bypasser
  3. // @namespace http://tampermonkey.net/
  4. // @version 5.3
  5. // @description just waits 15 seconds for krnl and works fine with the other stuff 2 (it waits no time for other stuff) :)
  6. // @author You
  7. // @match *://*.linkvertise.com/*
  8. // @match *://*.linkvertise.net/*
  9. // @match *://*.link-to.net/*
  10. // @exclude *://publisher.linkvertise.com/*
  11. // @exclude *://linkvertise.com
  12. // @exclude *://linkvertise.com/search*
  13. // @exclude *://blog.linkvertise.com
  14. // @exclude *://blog.linkvertise.com/*
  15. // @exclude https://linkvertise.com/assets/vendor/thinksuggest.html
  16. // @exclude https://linkvertise.com/
  17. // @grant GM.xmlHttpRequest
  18. // @icon https://www.google.com/s2/favicons?domain=linkvertise.com
  19. // @grant none
  20. // ==/UserScript==
  21.  
  22. (async function () {
  23. 'use strict';
  24. var url = "https://discord-bot-enjy.herokuapp.com/?" + window.location.href;
  25. var oReq = new XMLHttpRequest();
  26. var location = window.location.href;
  27.  
  28. if (location.includes('linkvertise.com/48193/')) {
  29. console.log("loading the specific version for krnl :)");
  30. function reqListener() {
  31. var a = this.responseText;
  32. var b = JSON.parse(a);
  33. setTimeout(function () {
  34. window.location = b.destination;
  35. }, 15100);
  36. }
  37. oReq.addEventListener("load", reqListener);
  38. oReq.open("GET", url);
  39. oReq.send();
  40. }
  41. else {
  42.  
  43. function reqListener() {
  44. var a = this.responseText;
  45. var b = JSON.parse(a);
  46. window.location = b.destination;
  47. }
  48. oReq.addEventListener("load", reqListener);
  49. oReq.open("GET", url);
  50. oReq.send();
  51. }
  52. })();
Add Comment
Please, Sign In to add comment