* Use explicit values to populate access token's platform in apps. * Fix View Association layout. * Web Extension popup layout rework.
32 lines
951 B
Plaintext
32 lines
951 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleIconFile</key>
|
|
<string>icon</string>
|
|
<key>HPAPIAccessTokenPlatform</key>
|
|
<string>macOS</string>
|
|
<key>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionAttributes</key>
|
|
<dict>
|
|
<key>NSExtensionActivationRule</key>
|
|
<dict>
|
|
<key>NSExtensionActivationSupportsText</key>
|
|
<true/>
|
|
<key>NSExtensionActivationSupportsWebPageWithMaxCount</key>
|
|
<integer>1</integer>
|
|
<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
|
|
<integer>1</integer>
|
|
</dict>
|
|
<key>NSExtensionJavaScriptPreprocessingFile</key>
|
|
<string>ShareExtensionHelper</string>
|
|
</dict>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.share-services</string>
|
|
<key>NSExtensionPrincipalClass</key>
|
|
<string>ShareViewController</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|