# Overview

I have tried to make ZauberCMS as extendable as possible. The main functionality is driven from the ExtensionManager. The ExtensionManager allows you to find instances of types and use them all over the site. If you inject the ExtensionManager you can use this for your own projects.

```csharp
// Injecting the ExtensionManager into a Component
[Inject] public ExtensionManager ExtensionManager { get; set; } = default!;
```

And then you would use it like so

```csharp
// Note the true is passed in, to cache this call to speed up next calls
var instances = ExtensionManager.GetInstances<IContentProperty>(true);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://aptitude.gitbook.io/zaubercms/extending-zaubercms/overview.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
