Charged: Add breakpoints to transactions

Charged: Add breakpoints to transactions

A web3 transaction debugger to increase development speed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A web3 transaction debugger to increase development speed",
  "version": "0.0.12",
  "manifest_version": 3,
  "name": "Charged: Add breakpoints to transactions",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "charged_logo.png"
  },
  "icons": {
    "128": "charged_logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "charged_logo.png",
        "injectedScript.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}