Skip to content

Instantly share code, notes, and snippets.

@ian-mcdowell
Last active February 14, 2022 11:13
Show Gist options
  • Save ian-mcdowell/65f362e0828b48ef0afb5e9180dbeefa to your computer and use it in GitHub Desktop.
Save ian-mcdowell/65f362e0828b48ef0afb5e9180dbeefa to your computer and use it in GitHub Desktop.
Keynote DAVFileProvider
<?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