Get All the Registered Extensions

A shared folder with AI prompts and code snippets

From workspace: Nvidia

Team: Omniverse

Total snippets: 1

Nvidia

Get All the Registered Extensions

1 snippet

Get All the Registered Extensions

You can use the ExtensionManager from the IApp interface to query the local and remote extensions that are available to your Kit app. These functions return a list of extensions with information like: extension ID, name, version, path, and whether the extension is enabled.

import omni.kit.app # there are a lot of extensions, print only first N entries in each loop PRINT_ONLY_N = 10 # get all registered local extensions (enabled and disabled) manager = omni.kit.app.get_app().get_extension_manager() for ext in...