Blue crosshair

Blue crosshair for .io fps games

  1. // ==UserScript==
  2. // @namespace blue-crosshair
  3. // @license MIT
  4. // @name Blue crosshair
  5. // @description Blue crosshair for .io fps games
  6. // @version 1.0.1
  7. // @author Foxitixation
  8. // @match https://krunker.io/
  9. // @match https://deadshot.io/
  10. // @match https://sv.browserfps.com/
  11. // @run-at document-start
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. window.addEventListener('load', function() {
  17. try {
  18. var verticalLine = document.createElement('div');
  19. verticalLine.style.cssText = 'width:2px;height:20px;background-color:#0099cc;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:200';
  20.  
  21. var horizontalLine = document.createElement('div');
  22. horizontalLine.style.cssText = 'width:20px;height:2px;background-color:#0099cc;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:200';
  23.  
  24. document.body.appendChild(verticalLine);
  25. document.body.appendChild(horizontalLine);
  26. } catch (e) { }
  27. });
  28. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址