publink-open-vue-devtools

publink开启vue开发工具

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         publink-open-vue-devtools
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  publink开启vue开发工具
// @author       HuangBaoCheng
// @include      *://*
// @license      MIT
// @icon         https://www.google.com/s2/favicons?domain=tampermonkey.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    try {

        setTimeout(function() {
            const all = document.querySelectorAll('*');
            let el
            for (let i = 0; i < all.length; i++) {
                if (all[i].__vue__) {
                    el = all[i]
                    break
                }
            }
            if (el) {
                console.log('use vue', el);
                var Vue = Object.getPrototypeOf(el.__vue__).constructor
                while (Vue.super) {
                    Vue = Vue.super
                }
                Vue.config.devtools = true;
                window.__VUE_DEVTOOLS_GLOBAL_HOOK__.Vue = Vue;
                console.log(Vue.version);
            }
            else {
                console.log('not use vue');
        }
        }, 5000)

    } catch (error) {
        console.warn('publink-open-vue-devtools -> ', error)
    }
})();