您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a crosshair in the form of an arrow in the center of the screen on miniblox.io
// ==UserScript== // @name Crosshair for bridging on miniblox.io // @namespace http://tampermonkey.net/ // @description Adds a crosshair in the form of an arrow in the center of the screen on miniblox.io // @author Your Name // @match https://miniblox.io/* // @grant GM_addStyle // @license Redistribution prohibited // @version 0.1 // ==/UserScript== (function() { 'use strict'; // URL изображения стрелочки const crosshairURL = 'https://static.thenounproject.com/png/344378-200.png'; // Создаем элемент изображения прицела const crosshair = document.createElement('img'); crosshair.src = crosshairURL; crosshair.style.position = 'fixed'; crosshair.style.top = '50%'; crosshair.style.left = '50%'; crosshair.style.width = '30px'; // Установите размер прицела crosshair.style.height = '30px'; // Установите размер прицела crosshair.style.transform = 'translate(-50%, -50%)'; crosshair.style.zIndex = '9999'; // Поверх всех элементов // Добавляем прицел на страницу document.body.appendChild(crosshair); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址