├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Artworks ├── AppIcon.png ├── HavocMarketing.png └── IconDrawer.swift ├── DevKit ├── env.sh ├── roothide.sh ├── rootless.sh ├── sim-install.sh ├── sim-launch.sh └── simulator.sh ├── Headers └── libSandy.h ├── LICENSE ├── Libraries ├── _roothide │ └── libsandy.tbd ├── _rootless │ └── libsandy.tbd └── libsandy.tbd ├── Makefile ├── NoRedirect.plist ├── NoRedirect.xm ├── NoRedirectPrefs ├── Frameworks │ ├── AltList.framework │ │ ├── AltList.tbd │ │ ├── Headers │ │ │ ├── ATLApplicationListControllerBase.h │ │ │ ├── ATLApplicationListMultiSelectionController.h │ │ │ ├── ATLApplicationListSelectionController.h │ │ │ ├── ATLApplicationListSubcontroller.h │ │ │ ├── ATLApplicationListSubcontrollerController.h │ │ │ ├── ATLApplicationSection.h │ │ │ ├── ATLApplicationSelectionCell.h │ │ │ ├── ATLApplicationSubtitleCell.h │ │ │ ├── ATLApplicationSubtitleSwitchCell.h │ │ │ └── AltList.h │ │ ├── Info.plist │ │ └── Modules │ │ │ └── module.modulemap │ ├── Preferences.framework │ │ └── Preferences.tbd │ ├── _roothide │ │ ├── AltList.framework │ │ │ ├── AltList.tbd │ │ │ ├── Headers │ │ │ ├── Info.plist │ │ │ └── Modules │ │ └── Preferences.framework │ │ │ └── Preferences.tbd │ ├── _rootless │ │ ├── AltList.framework │ │ │ ├── AltList.tbd │ │ │ ├── Headers │ │ │ ├── Info.plist │ │ │ └── Modules │ │ └── Preferences.framework │ │ │ └── Preferences.tbd │ └── _simulator │ │ ├── AltList.framework │ │ ├── AltList.tbd │ │ ├── Headers │ │ ├── Info.plist │ │ └── Modules │ │ └── Preferences.framework │ │ └── Preferences.tbd ├── LSApplicationProxy+AltList.h ├── Makefile ├── NoRedirectAppListController.h ├── NoRedirectAppListController.m ├── NoRedirectAppSelectionViewController.h ├── NoRedirectAppSelectionViewController.m ├── NoRedirectAppSpecificViewController.h ├── NoRedirectAppSpecificViewController.m ├── NoRedirectHistoryViewController.h ├── NoRedirectHistoryViewController.m ├── NoRedirectRootListController.h ├── NoRedirectRootListController.m ├── Resources │ ├── App.plist │ ├── Info.plist │ ├── Root.plist │ ├── en.lproj │ │ ├── App.strings │ │ ├── History.strings │ │ ├── InfoPlist.strings │ │ └── Root.strings │ ├── icon@2x.png │ ├── icon@3x.png │ └── zh-Hans.lproj │ │ ├── App.strings │ │ ├── History.strings │ │ ├── InfoPlist.strings │ │ └── Root.strings ├── control └── layout │ └── Library │ └── PreferenceLoader │ └── Preferences │ └── NoRedirectPrefs │ └── Root.plist ├── NoRedirectRecord.h ├── NoRedirectRecord.m ├── README.md ├── control ├── layout └── Library │ └── libSandy │ ├── NoRedirectSafari.plist │ └── NoRedirectSafari_RootHide.plist └── libroot └── dyn.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/.gitignore -------------------------------------------------------------------------------- /Artworks/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/Artworks/AppIcon.png -------------------------------------------------------------------------------- /Artworks/HavocMarketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/Artworks/HavocMarketing.png -------------------------------------------------------------------------------- /Artworks/IconDrawer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/Artworks/IconDrawer.swift -------------------------------------------------------------------------------- /DevKit/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/DevKit/env.sh -------------------------------------------------------------------------------- /DevKit/roothide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/DevKit/roothide.sh -------------------------------------------------------------------------------- /DevKit/rootless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/DevKit/rootless.sh -------------------------------------------------------------------------------- /DevKit/sim-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/DevKit/sim-install.sh -------------------------------------------------------------------------------- /DevKit/sim-launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/DevKit/sim-launch.sh -------------------------------------------------------------------------------- /DevKit/simulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/DevKit/simulator.sh -------------------------------------------------------------------------------- /Headers/libSandy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/Headers/libSandy.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries/_roothide/libsandy.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/Libraries/_roothide/libsandy.tbd -------------------------------------------------------------------------------- /Libraries/_rootless/libsandy.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/Libraries/_rootless/libsandy.tbd -------------------------------------------------------------------------------- /Libraries/libsandy.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/Libraries/libsandy.tbd -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/Makefile -------------------------------------------------------------------------------- /NoRedirect.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirect.plist -------------------------------------------------------------------------------- /NoRedirect.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirect.xm -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/AltList.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/AltList.tbd -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListControllerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListControllerBase.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListMultiSelectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListMultiSelectionController.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListSelectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListSelectionController.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListSubcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListSubcontroller.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListSubcontrollerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationListSubcontrollerController.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationSection.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationSelectionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationSelectionCell.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationSubtitleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationSubtitleCell.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationSubtitleSwitchCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/ATLApplicationSubtitleSwitchCell.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Headers/AltList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Headers/AltList.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Info.plist -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/AltList.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/AltList.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/Preferences.framework/Preferences.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/Preferences.framework/Preferences.tbd -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_roothide/AltList.framework/AltList.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/_roothide/AltList.framework/AltList.tbd -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_roothide/AltList.framework/Headers: -------------------------------------------------------------------------------- 1 | ../../AltList.framework/Headers -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_roothide/AltList.framework/Info.plist: -------------------------------------------------------------------------------- 1 | ../../AltList.framework/Info.plist -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_roothide/AltList.framework/Modules: -------------------------------------------------------------------------------- 1 | ../../AltList.framework/Modules -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_roothide/Preferences.framework/Preferences.tbd: -------------------------------------------------------------------------------- 1 | ../../Preferences.framework/Preferences.tbd -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_rootless/AltList.framework/AltList.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/_rootless/AltList.framework/AltList.tbd -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_rootless/AltList.framework/Headers: -------------------------------------------------------------------------------- 1 | ../../AltList.framework/Headers -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_rootless/AltList.framework/Info.plist: -------------------------------------------------------------------------------- 1 | ../../AltList.framework/Info.plist -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_rootless/AltList.framework/Modules: -------------------------------------------------------------------------------- 1 | ../../AltList.framework/Modules -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_rootless/Preferences.framework/Preferences.tbd: -------------------------------------------------------------------------------- 1 | ../../Preferences.framework/Preferences.tbd -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_simulator/AltList.framework/AltList.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/_simulator/AltList.framework/AltList.tbd -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_simulator/AltList.framework/Headers: -------------------------------------------------------------------------------- 1 | ../../AltList.framework/Headers -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_simulator/AltList.framework/Info.plist: -------------------------------------------------------------------------------- 1 | ../../AltList.framework/Info.plist -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_simulator/AltList.framework/Modules: -------------------------------------------------------------------------------- 1 | ../../AltList.framework/Modules -------------------------------------------------------------------------------- /NoRedirectPrefs/Frameworks/_simulator/Preferences.framework/Preferences.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Frameworks/_simulator/Preferences.framework/Preferences.tbd -------------------------------------------------------------------------------- /NoRedirectPrefs/LSApplicationProxy+AltList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/LSApplicationProxy+AltList.h -------------------------------------------------------------------------------- /NoRedirectPrefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Makefile -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectAppListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectAppListController.h -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectAppListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectAppListController.m -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectAppSelectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectAppSelectionViewController.h -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectAppSelectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectAppSelectionViewController.m -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectAppSpecificViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectAppSpecificViewController.h -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectAppSpecificViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectAppSpecificViewController.m -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectHistoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectHistoryViewController.h -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectHistoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectHistoryViewController.m -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectRootListController.h -------------------------------------------------------------------------------- /NoRedirectPrefs/NoRedirectRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/NoRedirectRootListController.m -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/App.plist -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/Info.plist -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/Root.plist -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/en.lproj/App.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/en.lproj/App.strings -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/en.lproj/History.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/en.lproj/History.strings -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "CFBundleDisplayName" = "No Redirect"; 2 | -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/zh-Hans.lproj/App.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/zh-Hans.lproj/App.strings -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/zh-Hans.lproj/History.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/zh-Hans.lproj/History.strings -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "CFBundleDisplayName" = "禁字诀"; 2 | -------------------------------------------------------------------------------- /NoRedirectPrefs/Resources/zh-Hans.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/Resources/zh-Hans.lproj/Root.strings -------------------------------------------------------------------------------- /NoRedirectPrefs/control: -------------------------------------------------------------------------------- 1 | ../control -------------------------------------------------------------------------------- /NoRedirectPrefs/layout/Library/PreferenceLoader/Preferences/NoRedirectPrefs/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectPrefs/layout/Library/PreferenceLoader/Preferences/NoRedirectPrefs/Root.plist -------------------------------------------------------------------------------- /NoRedirectRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectRecord.h -------------------------------------------------------------------------------- /NoRedirectRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/NoRedirectRecord.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/README.md -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/control -------------------------------------------------------------------------------- /layout/Library/libSandy/NoRedirectSafari.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/layout/Library/libSandy/NoRedirectSafari.plist -------------------------------------------------------------------------------- /layout/Library/libSandy/NoRedirectSafari_RootHide.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/layout/Library/libSandy/NoRedirectSafari_RootHide.plist -------------------------------------------------------------------------------- /libroot/dyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/NoRedirect/HEAD/libroot/dyn.c --------------------------------------------------------------------------------