M2 Developer Tools

Adds Magento 2 debugging tools to the Chrome Developer Tools.

Cos'è M2 Developer Tools?

M2 Developer Tools è un'estensione di Chrome sviluppata da JH, e la sua funzione principale è "Adds Magento 2 debugging tools to the Chrome Developer Tools.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione M2 Developer Tools

Scarica i file di estensione M2 Developer Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A tree view of Blocks/Containers used in a Magento 2 website.

First, install this Magento 2 module to enable the instrumentation https://github.com/WeareJH/m2-module-jh-block-logger

Once installed and enabled, you'll get a tree view of blocks/containers in a new Dev Tools panel                    

Informazioni di Base sull'Estensione

Nome M2 Developer Tools M2 Developer Tools
ID nomdlhobjjlnomlieegpbobfddpkmhgh
URL Ufficiale https://chrome.google.com/webstore/detail/m2-developer-tools/nomdlhobjjlnomlieegpbobfddpkmhgh
Descrizione Adds Magento 2 debugging tools to the Chrome Developer Tools.
Dimensione del File 643 KB
Conteggio Installazioni 641
Versione Corrente 1.1.1
Ultimo Aggiornamento 2018-05-28
Data di Pubblicazione 2018-05-28
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore JH
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/WeareJH/m2-dev-tools
URL della Pagina di Aiuto https://github.com/WeareJH/m2-dev-tools/issues
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "M2 Developer Tools",
    "description": "Adds Magento 2 debugging tools to the Chrome Developer Tools.",
    "version": "1.1.1",
    "minimum_chrome_version": "49",
    "devtools_page": "main.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "main.html",
        "dist\/main.js",
        "dist\/panel.css",
        "dist\/panel.js"
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}