您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Blue crosshair for .io fps games
// ==UserScript== // @namespace blue-crosshair // @license MIT // @name Blue crosshair // @description Blue crosshair for .io fps games // @version 1.0.1 // @author Foxitixation // @match https://krunker.io/ // @match https://deadshot.io/ // @match https://sv.browserfps.com/ // @run-at document-start // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', function() { try { var verticalLine = document.createElement('div'); verticalLine.style.cssText = 'width:2px;height:20px;background-color:#0099cc;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:200'; var horizontalLine = document.createElement('div'); horizontalLine.style.cssText = 'width:20px;height:2px;background-color:#0099cc;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:200'; document.body.appendChild(verticalLine); document.body.appendChild(horizontalLine); } catch (e) { } }); })();