React-Sight

React-Sight

Extends the Developer Tools, adding a sidebar that displays React Component Hierarchy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "React-Sight",
  "short_name": "React-Sight",
  "version": "1.3.0",
  "description": "Extends the Developer Tools, adding a sidebar that displays React Component Hierarchy.",
  "devtools_page": "devtools.html",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "icons": {
    "16": "asset/icon16.png",
    "48": "asset/icon48.png",
    "128": "asset/icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "/installHook.js"
  ]
}