注入vue到智慧基建

进入系统后,三秒后注入devtools到vue

// ==UserScript==
// @name         注入vue到智慧基建
// @namespace    http://tampermonkey.net/
// @version      20250401150633
// @description  进入系统后,三秒后注入devtools到vue
// @author       You
// @match        https://10-152-252-1-9fse9py3ym8010c.ztna-dingtalk.com/*
// @match        https://test1.gzztdh.com:9445/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=ztna-dingtalk.com
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    window.onload = function () {
        setTimeout(function () {
            // Your code here...
            try {
                const devtools = window.__VUE_DEVTOOLS_GLOBAL_HOOK__;
                const Vue = $("#app")[0].__vue__.__proto__.__proto__.constructor;
                Vue.config.devtools = true;
                devtools.emit("init", Vue);
            } catch (e) {
                console.error(e)
            }
        }, 3000)
    }
})();

QingJ © 2025

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