Krunker.io Css Changer

Custom Css Changer

  1. // ==UserScript==
  2. // @name Krunker.io Css Changer
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Custom Css Changer
  6. // @author Jaguar
  7. // @match https://krunker.io/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=krunker.io
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12. // Discord- https://discord.gg/4T6HGWTBd7
  13. // GitHub- https://github.com/Documantation12
  14.  
  15.  
  16. var CustomCssLink = "PUT_CUSTOM_CSS_HERE";
  17.  
  18. var linkElement = document.createElement('link');
  19. linkElement.rel = 'stylesheet';
  20. linkElement.href = CustomCssLink;
  21. fetch(linkElement.href)
  22. .then(response => response.text())
  23. .then(grabthecss => {
  24. var styleElement = document.createElement('style');
  25. styleElement.textContent = grabthecss;
  26. document.head.appendChild(linkElement);
  27. document.head.appendChild(styleElement);
  28. })
  29.