Krunker.io ESP

Simple ESP script for krunker.io (now featuring AD-block enhancer!)

目前为 2021-10-29 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Krunker.io ESP
  3. // @namespace https://greasyfork.org/en/users/817964
  4. // @version 2.9
  5. // @description Simple ESP script for krunker.io (now featuring AD-block enhancer!)
  6. // @author Hidden_X
  7. // @include *://krunker.io/*
  8. // @include *browserfps.com*
  9. // @exclude *://krunker.io/games.html
  10. // @exclude *://krunker.io/social.html*
  11. // @run-at document-start
  12. // @require https://greasyfork.org/scripts/18490-ads-dom-remover-runner/code/Ads%20DOM%20Remover%20Runner.js?version=827996
  13. // @donate https://www.patreon.com/tech2survive
  14. // @license GNU General Public License v2.0
  15. // @grant none
  16. // ==/UserScript==
  17.  
  18. // ESP code
  19. Object.defineProperty(Object.prototype, 'cnBSeen', {value: true, enumerable: false}); // "cnBSeen" current nametags variable
  20.  
  21. // UI elements
  22. const titles = ["Krunker | Simple ESP", "Made by Hidden_X"];
  23. let i = 0;
  24.  
  25. setInterval(() => {
  26. i = i % 2; // <-- number of titles.
  27. document.title = titles[i];
  28. i++;
  29. }, 1250); // <-- delay between each title.
  30.  
  31.  
  32.  
  33.  
  34. /*
  35. Developed by Hidden_X
  36. - on behalf of Tech2Survive
  37.  
  38. This is an open-source and copyright-free project. You can use it and modify it as you wish.
  39. Warning: Any attempts of reuploading it without permission from the original creator (Hidden_X) will be taken down by GreasyFork as it goes against it's TOS!
  40.  
  41. · Copyright is for cowards ·
  42.  
  43. -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  44.  
  45. Consider Donating: https://www.patreon.com/tech2survive
  46. Thank you :)
  47. */