C-React

C-React

A Chrome Extension tool that visualizes React rendering of components

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "C-React",
  "version": "1.1",
  "devtools_page": "devtools.html",
  "description": "A Chrome Extension tool that visualizes React rendering of components",
  "background": {
    "service_worker": "public/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://localhost/*"
      ],
      "run_at": "document_idle",
      "js": [
        "public/content.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/logo_16.png",
    "48": "assets/logo_48.png",
    "128": "assets/logo_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "../../client/components/App.tsx",
        "panel.html",
        "public/background.bundle.js",
        "./contentScript.js",
        "./injectScript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "App.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "contextMenus",
    "storage"
  ]
}