Is it possible register CFBundleDocumentTypes which iOS safari support using cordova app?

Im working on an iOS application which has file extenstion e.g. .vlin and i want iOS safari browser to support this extension. So far I did CFBundleDocumentTypes in cofig.xml

<platform name="ios"> <preference name="IosLaunchMode" value="singleTask" /> <config-file platform="ios" target="*-Info.plist" parent="UIFileSharingEnabled"> <true /> </config-file> <config-file platform="ios" target="*-Info.plist" parent="CFBundleDocumentTypes"> <array> <dict> <key>CFBundleTypeName</key> <string>com.example.vlin.vlin</string> <key>CFBundleTypeRole</key> <string>Editor</string> <key>LSHandlerRank</key> <string>Owner</string> <key>LSItemContentTypes</key> <array> <string>com.example.vlin.vlin</string> </array> </dict> </array> </config-file> <config-file platform="ios" target="*-Info.plist" parent="UTExportedTypeDeclarations"> <array> <dict> <key>UTTypeConformsTo</key> <array> <string>public.data</string> </array> <key>UTTypeDescription</key> <string>Vlin document</string> <key>UTTypeIdentifier</key> <string>com.example.vlin.vlin</string> <key>UTTypeTagSpecification</key> <dict> <key>public.filename-extension</key> <string>vlin</string> </dict> </dict> </array> </config-file> </platform>

But this is not working for iOS safari