Greasy Fork

网页调试控制台vconsole

网页调试控制台,帮助浏览器接口调试工具

当前为 2023-09-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         网页调试控制台vconsole
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  网页调试控制台,帮助浏览器接口调试工具
// @author       wll
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// @require      https://unpkg.com/vconsole@latest/dist/vconsole.min.js
// @icon         https://img-blog.csdnimg.cn/20181221195058594.gif
// @include      *:*
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    function init(){
        var vConsole = new window.VConsole();
        console.debug('==========vConsole init==========');
    }

    $(function(){
        init();
    })

})();