控制台EZ

用于在环境严重受限(如手机) 或 有较强 Anti-DevTools 的网站使用

  1. // ==UserScript==
  2. // @name:zh-CN 控制台EZ
  3. // @name EZ Console
  4. // @namespace Violentmonkey Scripts
  5. // @match *://*/*
  6. // @license MPL-2.0
  7. // @version 0.5
  8. // @inject-into page
  9. // @grant none
  10. // @author -
  11. // @require https://cdn.jsdelivr.net/npm/vconsole@3.15/dist/vconsole.min.js
  12. // @description:zh-cn 用于在环境严重受限(如手机) 或 有较强 Anti-DevTools 的网站使用
  13. // @description:en -
  14. // @description this script may be useful when your DevTools are disabled.
  15. // ==/UserScript==
  16. //'use strict';
  17.  
  18. window.vConsole = new VConsole({
  19. defaultPlugins: ['system', 'network', 'element', 'storage'], // 可以在此设定要默认加载的面板
  20. maxLogNumber: 1000,
  21. });
  22.  

QingJ © 2025

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