M2 Developer Tools

Adds Magento 2 debugging tools to the Chrome Developer Tools.

什么是M2 Developer Tools?

M2 Developer Tools是由JH开发的Chrome扩展程序,该扩展的主要功能是“Adds Magento 2 debugging tools to the Chrome Developer Tools.”。

扩展截图

screenshot
screenshot

下载M2 Developer Tools扩展crx文件

下载M2 Developer Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 M2 Developer Tools M2 Developer Tools
ID nomdlhobjjlnomlieegpbobfddpkmhgh
官方URL https://chrome.google.com/webstore/detail/m2-developer-tools/nomdlhobjjlnomlieegpbobfddpkmhgh
简介 Adds Magento 2 debugging tools to the Chrome Developer Tools.
文件大小 643 KB
安装次数 641
当前版本 1.1.1
更新时间 2018-05-28
上架时间 2018-05-28
评分 5.00/5 共4次评分
开发者 JH
付费类型 free
扩展官网 https://github.com/WeareJH/m2-dev-tools
帮助页面URL https://github.com/WeareJH/m2-dev-tools/issues
支持的语言 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"
        }
    ]
}