ReactMonitor
Quickly visualize React's component tree performance for improved onboarding and debugging
What does it do
By using…
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "React Monitor",
"version": "0.0.0.1",
"devtools_page": "devtools.html",
"permissions": [
"activeTab",
"contextMenus",
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
],
"background": {
"scripts": [
"backgroundScript.js"
],
"persistent": false
},
"icons": {
"16": "./assets/rm-icon16.png",
"48": "./assets/rm-icon-48.png",
"128": "./assets/rm-icon-128.png"
},
"externally_connectable": {
"ids": [
"*"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}