├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Resources ├── context_menu.gif ├── custom_menu_destination.gif ├── custom_preview_size.gif ├── menu_destination.gif └── menu_sheet.gif ├── Sources └── ContextMenuModifier │ ├── PreviewContextMenuModifier.swift │ └── PreviewContextView.swift └── Tests └── ContextMenuModifierTests └── ContextMenuModifierTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/README.md -------------------------------------------------------------------------------- /Resources/context_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/Resources/context_menu.gif -------------------------------------------------------------------------------- /Resources/custom_menu_destination.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/Resources/custom_menu_destination.gif -------------------------------------------------------------------------------- /Resources/custom_preview_size.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/Resources/custom_preview_size.gif -------------------------------------------------------------------------------- /Resources/menu_destination.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/Resources/menu_destination.gif -------------------------------------------------------------------------------- /Resources/menu_sheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/Resources/menu_sheet.gif -------------------------------------------------------------------------------- /Sources/ContextMenuModifier/PreviewContextMenuModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/Sources/ContextMenuModifier/PreviewContextMenuModifier.swift -------------------------------------------------------------------------------- /Sources/ContextMenuModifier/PreviewContextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/Sources/ContextMenuModifier/PreviewContextView.swift -------------------------------------------------------------------------------- /Tests/ContextMenuModifierTests/ContextMenuModifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonQii/ContextMenuModifier/HEAD/Tests/ContextMenuModifierTests/ContextMenuModifierTests.swift --------------------------------------------------------------------------------