ngx-base-state

ngx-base-state

This tool allows you to see data in your states based on ngx-base-state.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ngx-base-state",
  "version": "0.13",
  "description": "This tool allows you to see data in your states based on ngx-base-state.",
  "manifest_version": 3,
  "icons": {
    "48": "./assets/icons/icon-48.png",
    "96": "./assets/icons/icon-96.png"
  },
  "devtools_page": "devtools/index.html",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scrapper.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; default-src 'self' 'unsafe-eval'; object-src 'self'"
  }
}