react fiber visualizer
在 React 应用中可视化展示 Fiber 数据结构
react fiber visualizer क्या है?
react fiber visualizer typelulu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "在 React 应用中可视化展示 Fiber 数据结构"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में react fiber visualizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
在 React 应用中可视化展示 Fiber 数据结构。 在Chrome DevTools 面板中出现新的Fiber 标签, 点击"刷新"按钮,在Fiber标签面板下展示 Fiber数据结构。 目前需要依赖React Developer Tools, 所以确保您已经安装了React Developer Tools。 并且目前只对[email protected]做了测试,其他版本的React应用不一定能正常工作。
एक्सटेंशन की मूल जानकारी
नाम | react fiber visualizer |
ID | ffpgaakakoiafckdeoflmiipnjencpnj |
आधिकारिक URL | https://chromewebstore.google.com/detail/react-fiber-visualizer/ffpgaakakoiafckdeoflmiipnjencpnj |
विवरण | 在 React 应用中可视化展示 Fiber 数据结构 |
फ़ाइल का आकार | 289 KB |
स्थापना संख्या | 40 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2022-05-04 |
प्रकाशन तिथि | 2022-05-03 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | typelulu |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/lulupy/react-fiber-visualizer |
सहायता पृष्ठ URL | https://github.com/lulupy/react-fiber-visualizer |
समर्थित भाषाएँ | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "react fiber visualizer", "description": "\u5728 React \u5e94\u7528\u4e2d\u53ef\u89c6\u5316\u5c55\u793a Fiber \u6570\u636e\u7ed3\u6784", "version": "1.0", "manifest_version": 3, "icons": { "16": "icons\/icons8-fiber-16.png", "32": "icons\/icons8-fiber-32.png", "48": "icons\/icons8-fiber-48.png" }, "devtools_page": "pages\/devtools.html", "background": { "service_worker": "dist\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "dist\/content-script.js" ] } ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "dist\/content-script.js", "dist\/injected-script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |