gitextract_o5f_rvl5/ ├── .gitignore ├── COPYING ├── Privacy Redirect.xcodeproj/ │ └── project.pbxproj ├── README.md ├── Shared (App)/ │ ├── Instances.swift │ ├── InstancesView.swift │ ├── InstructionsView.swift │ ├── RawRepresentable/ │ │ ├── Array+RawRepresentable.swift │ │ └── Dictionary+RawRepresentable.swift │ └── SettingsView.swift ├── Shared (Extension)/ │ └── assets/ │ └── scripts/ │ ├── google-maps.js │ ├── google-translate.js │ ├── imdb.js │ ├── imgur.js │ ├── medium.js │ ├── quora.js │ ├── reddit.js │ ├── search.js │ ├── tiktok.js │ ├── twitter.js │ └── youtube.js ├── assets/ │ ├── icons.sketch │ └── previews.sketch ├── iOS (App)/ │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LargeIcon.imageset/ │ │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── InstancesViewDetails.swift │ ├── Privacy Redirect (iOS).entitlements │ └── PrivacyRedirectApp.swift ├── iOS (Extension)/ │ ├── Info.plist │ ├── Privacy Redirect Extension (iOS).entitlements │ ├── Resources/ │ │ ├── background.js │ │ └── manifest.json │ └── SafariWebExtensionHandler.swift ├── macOS (App)/ │ ├── AppState.swift │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── InstancesViewDetails.swift │ ├── PrivacyRedirectApp.swift │ └── Privacy_Redirect.entitlements └── macOS (Extension)/ ├── Info.plist ├── Privacy_Redirect_Extension.entitlements ├── Resources/ │ ├── manifest.json │ └── pages/ │ ├── background.js │ └── popup/ │ ├── popup.html │ └── popup.js └── SafariWebExtensionHandler.swift