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”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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"
} | |