[Feature Request] Return information key-value of settings in `app.extensions()`

As per:

This api is very helpful for knowing which extensions are activated in the Customer Accounts and other surfaces.

One more addition that would really complete this feature, would be to return the key-value records of the settings associated with each extension.

This would be extremely useful for extensions that are meant to be placed more than once (eg order-index.block.render), usually apps instruct merchants to add an ID in a setting in the extension to triangulate the correct way to display the extension.

I’m thinking something like this:

// Comes from the app's DB
const extensionID = '1234567'

const extensions = await shopify.app().extensions();
const hasExtensionInstalled = extensions.some((ext) => ext.settings['id'] === extensionID);

Any feedback on the request if it’s even possible would be appreaciated!