Recoilize

Recoilize

A Chrome extension that helps debug Recoil 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": "Recoilize",
  "version": "3.2.1",
  "devtools_page": "devtools.html",
  "description": "A Chrome extension that helps debug Recoil applications by memorizing the state of components with every render.",
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "icons": {
    "16": "icons/Recoilize-v2-16.png",
    "32": "icons/Recoilize-v2-32.png",
    "48": "icons/Recoilize-v2-48.png",
    "128": "icons/Recoilize-v2-128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "bundles/service_worker.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "bundles/content.bundle.js"
      ]
    }
  ]
}