Last active
August 29, 2015 14:10
-
-
Save tarunon/11895de8a9bb61cadd91 to your computer and use it in GitHub Desktop.
WebURLを1個以上含むAction/Share Extensionsのフィルタ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<key>NSExtension</key> | |
<dict> | |
<key>NSExtensionAttributes</key> | |
<dict> | |
<key>NSExtensionActivationRule</key> | |
<string>SUBQUERY (extensionItems, $extensionItem, SUBQUERY ($extensionItem.attachments, $attachment, NONE $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.file-url" && ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.url").@count > 0).@count > 0</string> | |
</dict> | |
<key>NSExtensionMainStoryboard</key> | |
<string>MainInterface</string> | |
<key>NSExtensionPointIdentifier</key> | |
<string>com.apple.ui-services</string> | |
</dict> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment