Vue.js devtools

Chrome and Firefox DevTools extension for debugging Vue.js applications.

Was ist Vue.js devtools?

Vue.js devtools ist eine Chrome-Erweiterung, die von vuejs-dev entwickelt wurde, und ihr Hauptmerkmal ist "Chrome and Firefox DevTools extension for debugging Vue.js applications.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Vue.js devtools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Vue.js devtools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Chrome DevTools extension for debugging Vue.js applications.

Thank you for trying the Vue.js devtools Beta! If you have any issue, please report them on the GitHub repository.

This is the beta channel - a major refactor that brings initial Vue 3 support.

Note the beta channel may cause conflict with the stable version of Vue devtools. If the Vue icon is lit but the Vue tab doesn't show up in devtools, please temporarily disable the stable version and re-open the page.                    

Grundlegende Informationen zur Erweiterung

Name Vue.js devtools Vue.js devtools
ID ljjemllljcmogpfapbkkighbhhppjdbg
Offizielle URL https://chrome.google.com/webstore/detail/vuejs-devtools/ljjemllljcmogpfapbkkighbhhppjdbg
Beschreibung Chrome and Firefox DevTools extension for debugging Vue.js applications.
Dateigröße 1.96 MB
Installationsanzahl 258,294
Aktuelle Version 6.0.0 beta 21
Letztes Update 2021-12-20
Veröffentlichungsdatum 2019-03-25
Bewertung 3.74/5 Insgesamt 136 Bewertungen
Entwickler vuejs-dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/vuejs/vue-devtools
Hilfeseite URL https://github.com/vuejs/vue-devtools/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vue.js devtools",
    "version": "6.0.0.21",
    "version_name": "6.0.0 beta 21",
    "description": "Chrome and Firefox DevTools extension for debugging Vue.js applications.",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16-beta.png",
        "48": "icons\/48-beta.png",
        "128": "icons\/128-beta.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16-gray.png",
            "48": "icons\/48-gray.png",
            "128": "icons\/128-gray.png"
        },
        "default_title": "Vue Devtools",
        "default_popup": "popups\/not-found.html"
    },
    "web_accessible_resources": [
        "devtools.html",
        "devtools-background.html",
        "build\/backend.js"
    ],
    "devtools_page": "devtools-background.html",
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "",
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/hook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/detector.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.headwayapp.co; object-src 'self'"
}