---
title: "LinkBrowser API"
manual: "TYPO3 Explained"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3coreapi:linkbrowser@main"
source: "ApiOverview/LinkHandling/LinkBrowserApi/Index.rst"
rendered: "2026-09-17T18:20:57+00:00"
---

# `LinkBrowser` API {#linkbrowser-api-1}

## Description {#description}

Each tab rendered in the link browser has an associated link handler,
responsible for rendering the tab and for creating and editing of
links belonging to this tab.

Here is an example for a custom link handler in the link browser:

![](../../../Images/ManualScreenshots/Backend/CustomLinkBrowser.png)

In most use cases, you can use one of the link handlers provided by the Core.
For an example, see [Tutorial: Custom record link
browser](https://docs.typo3.org/permalink/t3coreapi:tablerecordlinkbrowsertutorials@main).

If no link handler is available to deal with your link type, you can create
a custom link handler. See [Tutorial: Create a custom link
browser](https://docs.typo3.org/permalink/t3coreapi:tutorial-github-link-handler@main).

### Tab registration {#tab-registration}

LinkBrowser tabs are registered in page TSconfig like this:

**EXT:some_extension/Configuration/page.tsconfig**

```typoscript
TCEMAIN.linkHandler.<tabIdentifier> {
    handler = TYPO3\CMS\Backend\LinkHandler\FileLinkHandler
    label = backend.browse_links:file
    displayAfter = page
    scanAfter = page
    configuration {
        customConfig = passed to the handler
    }
}
```

The options `displayBefore` and `displayAfter` define the order how the various tabs are displayed in the LinkBrowser.

The options `scanBefore` and `scanAfter` define the order in which handlers are queried when determining the responsible
tab for an existing link.
Most likely your links will start with a specific prefix to identify them.
Therefore you should register your tab at least before the 'url' handler, so your handler can advertise itself as responsible for the given link.
The 'url' handler should be treated as last resort as it will work with any link.
