How to add full page extension link into Content Menu

Hello,

I created one extension for customer account page and it is working fine.

But now i want to link that extension with Content >> Menu >> Customer account main menu

In that i selected APPS but nothing showing

# Learn more about configuring your Customer account UI extension:
# https://shopify.dev/api/customer-account-ui-extensions/2024-10/configuration

# The version of APIs your extension will receive. Learn more:
# https://shopify.dev/docs/api/usage/versioning

api_version = "2024-10"

[[extensions]]
type = "ui_extension"
name = "My Looks Page"
handle = "my-looks-full-page"

# Controls where in Shopify your extension will be injected,
# and the file that contains your extension’s source code. Learn more:
# https://shopify.dev/docs/api/customer-account-ui-extensions/2024-10/extension-targets-overview

[[extensions.targeting]]
module = "./src/FullPageExtension.js"
target = "customer-account.page.render"
[extensions.targeting.capabilities]
allow_direct_linking = true
[extensions.capabilities]
# Gives your extension access to directly query Shopify’s storefront API.
# https://shopify.dev/docs/api/customer-account-ui-extensions/2024-10/configuration#api-access
api_access = true

# Gives your extension access to make external network calls, using the
# JavaScript `fetch()` API. Learn more:
# https://shopify.dev/docs/api/customer-account-ui-extensions/2024-10/configuration#network-access
network_access = true


Your extension TOML file looks correct.
You will need to enable customer account UI extension on theme editor.

What do you mean enable UI extension on theme editor?

do you mean drag and drop into theme customisation ?