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"
        }
    ]
}