// ==UserScript== // @name Eruda调试页面 // @version 1.0 // @description 为当前页面静默加载Eruda调试工具 // @author DeepSeek // @match *://*/* // @resource erudaJS https://cdn.bootcss.com/eruda/2.5.0/eruda.min.js // @run-at document-end // @grant GM_getResourceText // @namespace https://greasyfork.org/users/452911 // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 从资源加载Eruda脚本 var erudaCode = GM_getResourceText('erudaJS'); var script = document.createElement('script'); script.textContent = erudaCode; document.body.appendChild(script); // 延迟初始化 setTimeout(function() { if (typeof eruda !== 'undefined') { eruda.init(); } }, 100); })();