BUGFIX Vue.js devtools

BUGFIX Version, not by original author. Chrome and Firefox DevTools extension for debugging Vue.js applications.

Was ist BUGFIX Vue.js devtools?

BUGFIX Vue.js devtools ist eine Chrome-Erweiterung, die von liana.pigeot entwickelt wurde, und ihr Hauptmerkmal ist "BUGFIX Version, not by original author. Chrome and Firefox DevTools extension for debugging Vue.js applications.".

Erweiterungsscreenshots

screenshot

BUGFIX Vue.js devtools-Erweiterungs-CRX-Datei herunterladen

Laden Sie BUGFIX 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

                        [BUGFIX] Version, not by the original author.

The current beta devtool has bugs in mutations, so I uploaded this fixed version while waiting for the official one to be updated.
Chrome and Firefox DevTools extension for debugging Vue.js applications.
Chrome devtools extension for debugging Vue.js applications.                    

Grundlegende Informationen zur Erweiterung

Name BUGFIX Vue.js devtools BUGFIX Vue.js devtools
ID niapgcaeadldbabakiifalfcidacihap
Offizielle URL https://chromewebstore.google.com/detail/bugfix-vuejs-devtools/niapgcaeadldbabakiifalfcidacihap
Beschreibung BUGFIX Version, not by original author. Chrome and Firefox DevTools extension for debugging Vue.js applications.
Dateigröße 451 KB
Installationsanzahl 3,349
Aktuelle Version 5.0.0 beta 3 fix
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 3.63/5 Insgesamt 8 Bewertungen
Entwickler liana.pigeot
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BUGFIX Vue.js devtools",
    "version": "5.0.0.4",
    "version_name": "5.0.0 beta 3 fix",
    "description": "BUGFIX Version, not by original author. 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": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/hook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/detector.js"
            ],
            "run_at": "document_idle"
        }
    ]
}