@ByteBender全自动找65的脚本w 中发帖

全自动找65插件出炉啦wwww 
// ==UserScript==
// @name 65 查找器
// @namespace http://tampermonkey.net/
// @version 1.6
// @description 全自动查找视口内可见的65。支持面板拖拽,红色圆圈圈选,无背景高亮。
// @author Bytebender
// @match *://*/*
// @grant none
// @run-at document-end
// ==/UserScript==

(function() {
'use strict';

// --- 核心配置 ---
const TARGET_REGEX = /6([^0-9]?)(5)/g;
...