How can I add a new application to the Open With menu? (mac)
Add this to the CFBundleDocumentTypes array in /Applications/TextEdit.app/Contents/Info.plist:
1 2 3 4 5 6 | <dict> <key>CFBundleTypeExtensions</key> <array> <string>url</string> </array> </dict> |
/System/Library/Framew 继续>