Open plist using the editor ...
Capitalization, etc. is critical, it is recommended to specify both lowercase and upper file extensions.
<key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeExtensions</key> <array> <string>jpg</string> <string>JPG</string> </array> <key>CFBundleTypeName</key> <string>Images</string> <key>CFBundleTypeRole</key> <string>Editor</string>
Then save the file. The application should now be registered to process this type of file.
source share