Reactime

Reactime

A Chrome extension that helps debug React applications by memorizing the state of components with every render.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reactime",
  "version": "24.0.0",
  "devtools_page": "devtools.html",
  "description": "A Chrome extension that helps debug React applications by memorizing the state of components with every render.",
  "manifest_version": 3,
  "background": {
    "service_worker": "bundles/background.bundle.js"
  },
  "icons": {
    "48": "assets/whiteBlackSquareIcon48.png",
    "128": "assets/whiteBlackSquareIcon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*"
      ],
      "js": [
        "bundles/content.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "bundles/backend.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "scripting",
    "system.display",
    "debugger"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}