publink-open-vue-devtools

publink开启vue开发工具

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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)
    }
})();