React Fetch Tree

Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser

React Fetch Treeとは何ですか?

React Fetch Treeはreactfetchtreeによって開発されたChromeの拡張機能で、その主な機能は「Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

React Fetch Tree拡張機能のCRXファイルをダウンロード

React Fetch Tree拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        React Fetch Tree provides a visualization of the component tree which shows the layout and hierarchy of React apps with all their components.                    

拡張機能の基本情報

名前 React Fetch Tree React Fetch Tree
ID pfcfmbpfgfnlhfbccgddiilfdmdlhdom
公式URL https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom
説明 Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
ファイルサイズ 548 KB
インストール数 94
現在のバージョン 1.0
最終更新日 2021-04-17
公開日 2021-04-16
開発者 reactfetchtree
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.reactfetchtree.com
ヘルプページのURL https://github.com/oslabs-beta/react-fetch-tree
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "React Fetch Tree",
    "description": "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser",
    "version": "1.0",
    "browser_action": {
        "default_icon": "Logo.png"
    },
    "icons": {
        "128": "Logo.png",
        "16": "Logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "injectScript.js",
        "images\/*"
    ],
    "devtools_page": "devtools.html"
}