BUGFIX Vue.js devtools

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

Wat is BUGFIX Vue.js devtools?

BUGFIX Vue.js devtools is een Chrome-extensie ontwikkeld door liana.pigeot, en de belangrijkste functie is "BUGFIX Version, not by original author. Chrome and Firefox DevTools extension for debugging Vue.js applications.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie BUGFIX Vue.js devtools

Download BUGFIX Vue.js devtools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        [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.                    

Basisinformatie over de Extensie

Naam BUGFIX Vue.js devtools BUGFIX Vue.js devtools
ID niapgcaeadldbabakiifalfcidacihap
Officiële URL https://chromewebstore.google.com/detail/bugfix-vuejs-devtools/niapgcaeadldbabakiifalfcidacihap
Beschrijving BUGFIX Version, not by original author. Chrome and Firefox DevTools extension for debugging Vue.js applications.
Bestandsgrootte 451 KB
Aantal Installaties 3,349
Huidige Versie 5.0.0 beta 3 fix
Laatst Bijgewerkt 2019-03-08
Publicatiedatum 2019-03-08
Beoordeling 3.63/5 Totaal 8 Beoordelingen
Ontwikkelaar liana.pigeot
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}