https://github.com/abjerner/limbo.umbraco.iddqd
Package with various developer oriented improvements for the Umbraco backoffice.
https://github.com/abjerner/limbo.umbraco.iddqd
umbraco-v10 umbraco-v11 umbraco-v12
Last synced: 10 months ago
JSON representation
Package with various developer oriented improvements for the Umbraco backoffice.
- Host: GitHub
- URL: https://github.com/abjerner/limbo.umbraco.iddqd
- Owner: abjerner
- License: mit
- Created: 2023-05-21T20:43:25.000Z (about 3 years ago)
- Default Branch: v13/main
- Last Pushed: 2024-11-05T18:33:04.000Z (over 1 year ago)
- Last Synced: 2025-07-22T07:23:14.031Z (11 months ago)
- Topics: umbraco-v10, umbraco-v11, umbraco-v12
- Language: C#
- Homepage: https://packages.limbo.works/limbo.umbraco.iddqd/
- Size: 341 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Limbo Iddqd
[](https://github.com/abjerner/Limbo.Umbraco.Iddqd/blob/v1/main/LICENSE.md)
[](https://www.nuget.org/packages/Limbo.Umbraco.Iddqd)
[](https://www.nuget.org/packages/Limbo.Umbraco.Iddqd)
[](https://marketplace.umbraco.com/package/limbo.umbraco.iddqd)
[](https://packages.limbo.works/limbo.umbraco.iddqd/)
**Limbo Iddqd** is a package that provides various developer oriented improvements for the Umbraco backoffice. The purpose of the package is somewhat similar to that of the excellent [**Diplo God Mode** package](https://marketplace.umbraco.com/package/diplo.godmode) by Dan Diplo. **Limbo Iddqd** isn't supposed to replace the **Diplo God Mode** package, but more focus on some of the areas that **Diplo God Mode** doesn't cover. Coincidentally **iddqd** is the Doom cheat code for invulnerability - also known as *god mode*.
As of now, **Limbo Iddqd** provides the following improvements:
- [**Examine content app for content and media**](#examine-content-app)
Shows how a content or media item is indexed in the **ExternalIndex** and **InternalIndex** indexes, as well as an option to re-index a node for a specific index.
- [**Info content app for content types**](#info-content-app)
Add a new **Info** content app to all content types with a bit of information about the content type - eg. numeric ID and GUID key.
- [**List of registered property editors**](#property-editors)
Shows a list of all property editors registered in Umbraco - either from `package.manifest` files or from C#.
## Installation
### Umbraco 13
The package is only available via [**NuGet**](https://www.nuget.org/packages/Limbo.Umbraco.Iddqd/13.0.1). To install the package, you can use either .NET CLI:
```
dotnet add package Limbo.Umbraco.Iddqd --version 13.0.1
```
or the NuGet Package Manager:
```
Install-Package Limbo.Umbraco.Iddqd -Version 13.0.1
```
### Umbraco 10-12
See the [**v1/main**](https://github.com/abjerner/Limbo.Umbraco.Iddqd/tree/v1/main#installation) branch.
## Features
### Examine content app
The package adds a new content app for both content and media showing how the node is indexed in Examine, and an option for re-indexing the node in each index. Supported indexes are the **ExternalIndex** and **InternalIndex** indexes, and optionally also the **PDFIndex** if the [**UmbracoExamine.PDF** package](https://github.com/umbraco/UmbracoExamine.PDF) is installed.

### Info content app
As a developer it's often relevant to know the GUID key of a specific content type, but this isn't directly available through the default UI of the backoffice. **Limbo Iddqd** introduces a new **Info** content app that shows various information about the content type being shown - eg. the GUID key.

### Property editors
The list is available through the **Iddqd** tree in the **Settings** section. It exposes various information about each property editor, and also shows a warning if two property editors are registered with the same alias.
