├── .gitignore ├── LICENSE ├── Other ├── Products │ └── Debug │ │ └── libThunderPlugin.framework │ │ ├── Headers │ │ └── libThunderPlugin.h │ │ ├── Modules │ │ └── module.modulemap │ │ ├── Resources │ │ └── Info.plist │ │ ├── Versions │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── libThunderPlugin.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── libThunderPlugin │ │ └── Current │ │ │ ├── Headers │ │ │ └── libThunderPlugin.h │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ └── libThunderPlugin │ │ └── libThunderPlugin └── insert_dylib ├── README.md ├── Sources ├── CTSwizzledHelper.h ├── CTSwizzledHelper.m ├── Thunder+Hook.h └── Thunder+Hook.m ├── libThunderPlugin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── lemon.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── libThunderPlugin.xcscheme └── xcuserdata │ └── lemon.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── libThunderPlugin ├── libThunderPlugin.h └── libThunderPlugin.m /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Headers/libThunderPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Headers/libThunderPlugin.h -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Versions/A/Headers/libThunderPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Versions/A/Headers/libThunderPlugin.h -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Versions/A/libThunderPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Versions/A/libThunderPlugin -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Versions/Current/Headers/libThunderPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Versions/Current/Headers/libThunderPlugin.h -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Versions/Current/Modules/module.modulemap -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/Versions/Current/libThunderPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/Versions/Current/libThunderPlugin -------------------------------------------------------------------------------- /Other/Products/Debug/libThunderPlugin.framework/libThunderPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/Products/Debug/libThunderPlugin.framework/libThunderPlugin -------------------------------------------------------------------------------- /Other/insert_dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Other/insert_dylib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CTSwizzledHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Sources/CTSwizzledHelper.h -------------------------------------------------------------------------------- /Sources/CTSwizzledHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Sources/CTSwizzledHelper.m -------------------------------------------------------------------------------- /Sources/Thunder+Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Sources/Thunder+Hook.h -------------------------------------------------------------------------------- /Sources/Thunder+Hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/Sources/Thunder+Hook.m -------------------------------------------------------------------------------- /libThunderPlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/libThunderPlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /libThunderPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/libThunderPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /libThunderPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/libThunderPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /libThunderPlugin.xcodeproj/project.xcworkspace/xcuserdata/lemon.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/libThunderPlugin.xcodeproj/project.xcworkspace/xcuserdata/lemon.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /libThunderPlugin.xcodeproj/xcshareddata/xcschemes/libThunderPlugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/libThunderPlugin.xcodeproj/xcshareddata/xcschemes/libThunderPlugin.xcscheme -------------------------------------------------------------------------------- /libThunderPlugin.xcodeproj/xcuserdata/lemon.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/libThunderPlugin.xcodeproj/xcuserdata/lemon.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /libThunderPlugin.xcodeproj/xcuserdata/lemon.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/libThunderPlugin.xcodeproj/xcuserdata/lemon.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /libThunderPlugin/libThunderPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/libThunderPlugin/libThunderPlugin.h -------------------------------------------------------------------------------- /libThunderPlugin/libThunderPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/ThunderPlugin-macOS/HEAD/libThunderPlugin/libThunderPlugin.m --------------------------------------------------------------------------------