Greasy Fork镜像 支持简体中文。

Open Eruda Console

为当前页面增加Eruda调试

  1. // ==UserScript==
  2. // @name Open Eruda Console
  3. // @namespace 1147055827
  4. // @version 0.1
  5. // @description 为当前页面增加Eruda调试
  6. // @author hzCat
  7. // @include *
  8. // @match *
  9. // @run-at document-body
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. var s = document.createElement("script");
  15. s.src = "https://cdn.staticfile.org/eruda/1.5.8/eruda.min.js";
  16. s.addEventListener(
  17. "load",
  18. function() {
  19. eruda.init();
  20. },
  21. false
  22. );
  23. document.body.appendChild(s);
  24. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址