Reading the status of Safari Web Extension from settings

Currently I am struggling to find a way to read the status of Safari Web Extension from settings as I can not find any public api listed for iOS as it is already available for macOS.

This is now possible starting in the 26.2 updates of iOS, iPadOS, and visionOS which are currently available for testing. You'll want to install the latest seed and try out:

SFSafariExtensionManager.getStateOfExtension(
    withIdentifier identifier: String,
    completionHandler: @escaping (SFSafariExtensionState?, (any Error)?) -> Void
)
Reading the status of Safari Web Extension from settings
 
 
Q