Last active
February 14, 2022 11:13
-
-
Save ian-mcdowell/65f362e0828b48ef0afb5e9180dbeefa to your computer and use it in GitHub Desktop.
Keynote DAVFileProvider
This file contains hidden or 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
<?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>CFBundleName</key> | |
<string>KeynoteDAVFP</string> | |
<key>CFBundleIdentifier</key> | |
<string>com.apple.Keynote.KeynoteDAVFP</string> | |
<key>CFBundleDisplayName</key> | |
<string>WebDAV</string> | |
<key>NSExtension</key> | |
<dict> | |
<key>NSExtensionFileProviderCanBeDefaultLocation</key> | |
<false/> | |
<key>NSExtensionFileProviderOnlyVisibleInParentApplication</key> | |
<true/> | |
<key>NSExtensionFileProviderSupportsLoggingOut</key> | |
<true/> | |
<key>NSExtensionPrincipalClass</key> | |
<string>KeynoteDAVFP.DAVFileProvider</string> | |
<key>NSExtensionAttributes</key> | |
<dict> | |
<key>NSExtensionPointVersion</key> | |
<string>1.0</string> | |
</dict> | |
<key>NSExtensionFileProviderDocumentGroup</key> | |
<string>group.com.apple.Keynote.Spotlight</string> | |
<key>NSExtensionFileProviderEnabledByDefault</key> | |
<false/> | |
<key>NSExtensionFileProviderSupportsEnumeration</key> | |
<true/> | |
<key>NSExtensionPointIdentifier</key> | |
<string>com.apple.fileprovider-nonui</string> | |
</dict> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment