├── .gitignore ├── LICENSE ├── Other └── Screenshots │ ├── wechatplugin.png │ ├── wechatplugin_1.png │ └── wechatplugin_2.png ├── README.md └── WeChatPlugin ├── .theos ├── _ │ ├── DEBIAN │ │ └── control │ └── Library │ │ ├── Application Support │ │ └── WeChatPlugin │ │ │ ├── RemoteControlCommands.plist │ │ │ ├── Safari@2x.png │ │ │ ├── lockscreen@2x.png │ │ │ ├── shutdown@2x.png │ │ │ └── sleep@2x.png │ │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ ├── WeChatPlugin.dylib │ │ └── WeChatPlugin.plist ├── build_session ├── fakeroot ├── last_package ├── obj │ └── debug │ │ ├── WeChatPlugin.dylib │ │ ├── arm64 │ │ ├── WeChatPlugin.dylib │ │ ├── WeChatPlugin.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── WeChatPlugin.dylib │ │ └── src │ │ │ ├── Tweak.xm.b105e1f4.Td │ │ │ ├── WCPluginManager.m.b105e1f4.Td │ │ │ ├── WCPluginSettingController.m.b105e1f4.Td │ │ │ └── WCRemoteControlManager.m.b105e1f4.Td │ │ ├── armv7 │ │ ├── WeChatPlugin.dylib │ │ ├── WeChatPlugin.dylib.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── WeChatPlugin.dylib │ │ └── src │ │ │ ├── Tweak.xm.f693e1dc.Td │ │ │ ├── WCPluginManager.m.f693e1dc.Td │ │ │ ├── WCPluginSettingController.m.f693e1dc.Td │ │ │ └── WCRemoteControlManager.m.f693e1dc.Td │ │ └── src │ │ └── .stamp └── packages │ └── net.codetips.wechatplugin-1.0.0 ├── Makefile ├── WeChatPlugin.plist ├── control ├── layout └── Library │ └── Application Support │ └── WeChatPlugin │ ├── RemoteControlCommands.plist │ ├── Safari@2x.png │ ├── lockscreen@2x.png │ ├── shutdown@2x.png │ └── sleep@2x.png └── src ├── Tweak.xm ├── WCPluginManager.h ├── WCPluginManager.m ├── WCPluginSettingController.h ├── WCPluginSettingController.m ├── WCRemoteControlManager.h ├── WCRemoteControlManager.m └── WeChat.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/Screenshots/wechatplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/Other/Screenshots/wechatplugin.png -------------------------------------------------------------------------------- /Other/Screenshots/wechatplugin_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/Other/Screenshots/wechatplugin_1.png -------------------------------------------------------------------------------- /Other/Screenshots/wechatplugin_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/Other/Screenshots/wechatplugin_2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/README.md -------------------------------------------------------------------------------- /WeChatPlugin/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/RemoteControlCommands.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/RemoteControlCommands.plist -------------------------------------------------------------------------------- /WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/Safari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/Safari@2x.png -------------------------------------------------------------------------------- /WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/lockscreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/lockscreen@2x.png -------------------------------------------------------------------------------- /WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/shutdown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/shutdown@2x.png -------------------------------------------------------------------------------- /WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/sleep@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/_/Library/Application Support/WeChatPlugin/sleep@2x.png -------------------------------------------------------------------------------- /WeChatPlugin/.theos/_/Library/MobileSubstrate/DynamicLibraries/WeChatPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/_/Library/MobileSubstrate/DynamicLibraries/WeChatPlugin.dylib -------------------------------------------------------------------------------- /WeChatPlugin/.theos/_/Library/MobileSubstrate/DynamicLibraries/WeChatPlugin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/_/Library/MobileSubstrate/DynamicLibraries/WeChatPlugin.plist -------------------------------------------------------------------------------- /WeChatPlugin/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeChatPlugin/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeChatPlugin/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/last_package -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/WeChatPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/WeChatPlugin.dylib -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/arm64/WeChatPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/arm64/WeChatPlugin.dylib -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/arm64/WeChatPlugin.dylib.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/arm64/WeChatPlugin.dylib.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/arm64/WeChatPlugin.dylib.dSYM/Contents/Resources/DWARF/WeChatPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/arm64/WeChatPlugin.dylib.dSYM/Contents/Resources/DWARF/WeChatPlugin.dylib -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/arm64/src/Tweak.xm.b105e1f4.Td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/arm64/src/Tweak.xm.b105e1f4.Td -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/arm64/src/WCPluginManager.m.b105e1f4.Td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/arm64/src/WCPluginManager.m.b105e1f4.Td -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/arm64/src/WCPluginSettingController.m.b105e1f4.Td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/arm64/src/WCPluginSettingController.m.b105e1f4.Td -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/arm64/src/WCRemoteControlManager.m.b105e1f4.Td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/arm64/src/WCRemoteControlManager.m.b105e1f4.Td -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/armv7/WeChatPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/armv7/WeChatPlugin.dylib -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/armv7/WeChatPlugin.dylib.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/armv7/WeChatPlugin.dylib.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/armv7/WeChatPlugin.dylib.dSYM/Contents/Resources/DWARF/WeChatPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/armv7/WeChatPlugin.dylib.dSYM/Contents/Resources/DWARF/WeChatPlugin.dylib -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/armv7/src/Tweak.xm.f693e1dc.Td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/armv7/src/Tweak.xm.f693e1dc.Td -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/armv7/src/WCPluginManager.m.f693e1dc.Td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/armv7/src/WCPluginManager.m.f693e1dc.Td -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/armv7/src/WCPluginSettingController.m.f693e1dc.Td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/armv7/src/WCPluginSettingController.m.f693e1dc.Td -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/armv7/src/WCRemoteControlManager.m.f693e1dc.Td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/.theos/obj/debug/armv7/src/WCRemoteControlManager.m.f693e1dc.Td -------------------------------------------------------------------------------- /WeChatPlugin/.theos/obj/debug/src/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeChatPlugin/.theos/packages/net.codetips.wechatplugin-1.0.0: -------------------------------------------------------------------------------- 1 | 51 -------------------------------------------------------------------------------- /WeChatPlugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/Makefile -------------------------------------------------------------------------------- /WeChatPlugin/WeChatPlugin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/WeChatPlugin.plist -------------------------------------------------------------------------------- /WeChatPlugin/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/control -------------------------------------------------------------------------------- /WeChatPlugin/layout/Library/Application Support/WeChatPlugin/RemoteControlCommands.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/layout/Library/Application Support/WeChatPlugin/RemoteControlCommands.plist -------------------------------------------------------------------------------- /WeChatPlugin/layout/Library/Application Support/WeChatPlugin/Safari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/layout/Library/Application Support/WeChatPlugin/Safari@2x.png -------------------------------------------------------------------------------- /WeChatPlugin/layout/Library/Application Support/WeChatPlugin/lockscreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/layout/Library/Application Support/WeChatPlugin/lockscreen@2x.png -------------------------------------------------------------------------------- /WeChatPlugin/layout/Library/Application Support/WeChatPlugin/shutdown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/layout/Library/Application Support/WeChatPlugin/shutdown@2x.png -------------------------------------------------------------------------------- /WeChatPlugin/layout/Library/Application Support/WeChatPlugin/sleep@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/layout/Library/Application Support/WeChatPlugin/sleep@2x.png -------------------------------------------------------------------------------- /WeChatPlugin/src/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/src/Tweak.xm -------------------------------------------------------------------------------- /WeChatPlugin/src/WCPluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/src/WCPluginManager.h -------------------------------------------------------------------------------- /WeChatPlugin/src/WCPluginManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/src/WCPluginManager.m -------------------------------------------------------------------------------- /WeChatPlugin/src/WCPluginSettingController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/src/WCPluginSettingController.h -------------------------------------------------------------------------------- /WeChatPlugin/src/WCPluginSettingController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/src/WCPluginSettingController.m -------------------------------------------------------------------------------- /WeChatPlugin/src/WCRemoteControlManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/src/WCRemoteControlManager.h -------------------------------------------------------------------------------- /WeChatPlugin/src/WCRemoteControlManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/src/WCRemoteControlManager.m -------------------------------------------------------------------------------- /WeChatPlugin/src/WeChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeTips/WeChatPlugin/HEAD/WeChatPlugin/src/WeChat.h --------------------------------------------------------------------------------