您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
网页调试控制台,帮助浏览器接口调试工具
// ==UserScript== // @name 网页调试控制台vconsole // @namespace http://tampermonkey.net/ // @version 0.3 // @description 网页调试控制台,帮助浏览器接口调试工具 // @author wll // @require https://cdn.bootcdn.net/ajax/libs/jquery/3.7.1/jquery.min.js // @icon https://img-blog.csdnimg.cn/20181221195058594.gif // @match *://*/* // @run-at document-start // @license GPL // ==/UserScript== (function() { 'use strict'; // 创建一个 <script> 元素 var script = document.createElement('script'); script.src = 'https://cdn.jsdelivr.net/npm/[email protected]/dist/vconsole.min.js'; // 监听脚本加载完成的事件 script.onload = function() { // 创建 vConsole 实例 new VConsole(); console.debug('==========vConsole init=========='); }; // 将 <script> 元素添加到 <head> 元素中 document.head.appendChild(script); })();