├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── JailbreakBypass.xm ├── LICENSE ├── Makefile ├── README.md ├── Tweak.h ├── Tweak.xm ├── control ├── layout ├── DEBIAN │ └── postinst └── Library │ └── Application Support │ └── tiktokgod │ ├── download.png │ ├── download@2x.png │ ├── hideui.png │ ├── hideui@2x.png │ ├── showui.png │ └── showui@2x.png ├── photoshop ├── Banner.psd ├── download.psd ├── icon.psd ├── loop.psd └── showhideui.psd ├── pref ├── Makefile ├── Resources │ ├── Banner.jpg │ ├── Info.plist │ ├── Localization-contribute.md │ ├── Root.plist │ ├── ar.lproj │ │ └── Root.strings │ ├── base.lproj │ │ └── Root.strings │ ├── de.lproj │ │ └── Root.strings │ ├── en.lproj │ │ └── Root.strings │ ├── icon.png │ ├── icon@2x.png │ ├── ru.lproj │ │ └── Root.strings │ ├── th.lproj │ │ └── Root.strings │ ├── tr.lproj │ │ └── Root.strings │ └── vi.lproj │ │ └── Root.strings ├── TTGRootListController.h ├── TTGRootListController.m └── entry.plist ├── release ├── com.haoict.tiktokgod_1.10.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.11.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.12.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.12.2_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.3.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.4.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.5.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.6.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.6.1_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.6.2_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.7.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.8.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.8.1_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.9.1_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.9.2_iphoneos-arm.deb ├── com.haoict.tiktokgod_1.9.3_iphoneos-arm.deb ├── com.haoict.tiktokgod_2.0.0_iphoneos-arm.deb ├── com.haoict.tiktokgod_2.1.0_iphoneos-arm.deb └── com.haoict.tiktokgod_3.0.0_iphoneos-arm.deb └── tiktokgod.plist /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | packages 3 | HAOUtils* 4 | .DS_Store -------------------------------------------------------------------------------- /JailbreakBypass.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/JailbreakBypass.xm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/Tweak.h -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/control -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/layout/DEBIAN/postinst -------------------------------------------------------------------------------- /layout/Library/Application Support/tiktokgod/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/layout/Library/Application Support/tiktokgod/download.png -------------------------------------------------------------------------------- /layout/Library/Application Support/tiktokgod/download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/layout/Library/Application Support/tiktokgod/download@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/tiktokgod/hideui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/layout/Library/Application Support/tiktokgod/hideui.png -------------------------------------------------------------------------------- /layout/Library/Application Support/tiktokgod/hideui@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/layout/Library/Application Support/tiktokgod/hideui@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/tiktokgod/showui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/layout/Library/Application Support/tiktokgod/showui.png -------------------------------------------------------------------------------- /layout/Library/Application Support/tiktokgod/showui@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/layout/Library/Application Support/tiktokgod/showui@2x.png -------------------------------------------------------------------------------- /photoshop/Banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/photoshop/Banner.psd -------------------------------------------------------------------------------- /photoshop/download.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/photoshop/download.psd -------------------------------------------------------------------------------- /photoshop/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/photoshop/icon.psd -------------------------------------------------------------------------------- /photoshop/loop.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/photoshop/loop.psd -------------------------------------------------------------------------------- /photoshop/showhideui.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/photoshop/showhideui.psd -------------------------------------------------------------------------------- /pref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Makefile -------------------------------------------------------------------------------- /pref/Resources/Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/Banner.jpg -------------------------------------------------------------------------------- /pref/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/Info.plist -------------------------------------------------------------------------------- /pref/Resources/Localization-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/Localization-contribute.md -------------------------------------------------------------------------------- /pref/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/Root.plist -------------------------------------------------------------------------------- /pref/Resources/ar.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/ar.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/base.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/base.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/de.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/icon.png -------------------------------------------------------------------------------- /pref/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/icon@2x.png -------------------------------------------------------------------------------- /pref/Resources/ru.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/ru.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/th.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/th.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/tr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/tr.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/vi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/Resources/vi.lproj/Root.strings -------------------------------------------------------------------------------- /pref/TTGRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/TTGRootListController.h -------------------------------------------------------------------------------- /pref/TTGRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/TTGRootListController.m -------------------------------------------------------------------------------- /pref/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/pref/entry.plist -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.10.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.10.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.11.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.11.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.12.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.12.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.12.2_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.12.2_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.3.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.3.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.4.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.4.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.5.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.5.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.6.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.6.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.6.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.6.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.6.2_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.6.2_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.7.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.7.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.8.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.8.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.8.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.8.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.9.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.9.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.9.2_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.9.2_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_1.9.3_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_1.9.3_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_2.0.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_2.0.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_2.1.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_2.1.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.tiktokgod_3.0.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/release/com.haoict.tiktokgod_3.0.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /tiktokgod.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/tiktok-god/HEAD/tiktokgod.plist --------------------------------------------------------------------------------