Hi,
I'm an extension developer. I make my users on IOS use Orion app.
I want to find a way to detect that I'm currently running on Orion IOS.
Orion IOS support for the extension api is not complete so I want to detect it to implement alternative or disable specific feature.
I try different approach
browser.runtime.getBrowserInfo()
{
vendor: 'Google',
version: '130.0.0.0',
name: 'Chrome',
buildID: '20161018004015'
}
browser.runtime.getPlatformInfo()
{ arch: 'arm64', nacl_arch: 'arm64', os: 'mac' }
I expect one of this function to report data that allow me to know that I'm currently running on Orion ios.
1.3.25