Angular Component Overview

Angular Component Overview

This browser extension allows you to easily visualize the component tree of an Angular application, making it easy to understand…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Angular Component Overview",
  "version": "2.5",
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*",
        "https://localhost/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/tracer.js"
      ],
      "matches": [
        "http://localhost/*",
        "https://localhost/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}