您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a cool little dot crosshair to the center of the screen.
// ==UserScript== // @name Narrow one dot crosshair // @namespace http://tampermonkey.net/ // @version 0.1 // @description Adds a cool little dot crosshair to the center of the screen. // @author Evan // @match https://narrow.one/ // @grant none // ==/UserScript== (function() { 'use strict'; const dot = document.createElement('div'); dot.style.position = 'fixed'; dot.style.top = '50%'; dot.style.left = '50%'; dot.style.transform = 'translate(-50%, -50%)'; dot.style.width = '7px'; dot.style.height = '7px'; dot.style.borderRadius = '50%'; dot.style.backgroundColor = 'white'; dot.style.border = '1px solid black'; dot.style.pointerEvents = 'none'; document.body.appendChild(dot); })();