├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ └── auto_close_issues.yml ├── AUTHOR.md ├── README.md └── app └── src └── main └── kotlin └── wx └── demo └── hook ├── chat ├── AntiRevoke1Hook.kt ├── AutoSelectOriginalPhotoHook.kt ├── AutoViewOriginalPhotoHook.kt └── MsgFormatHook.kt ├── flutterbiz └── NewBizListHook.kt ├── helper ├── EmojiGameHook.kt ├── LocationHook.kt └── VoiceLengthHook.kt └── misc ├── AutoLoginWinHook.kt ├── MockScanHook.kt ├── MultiWebViewHook.kt └── ShareCheckHook.kt /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/auto_close_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/.github/workflows/auto_close_issues.yml -------------------------------------------------------------------------------- /AUTHOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/AUTHOR.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/README.md -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/chat/AntiRevoke1Hook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/chat/AntiRevoke1Hook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/chat/AutoSelectOriginalPhotoHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/chat/AutoSelectOriginalPhotoHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/chat/AutoViewOriginalPhotoHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/chat/AutoViewOriginalPhotoHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/chat/MsgFormatHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/chat/MsgFormatHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/flutterbiz/NewBizListHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/flutterbiz/NewBizListHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/helper/EmojiGameHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/helper/EmojiGameHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/helper/LocationHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/helper/LocationHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/helper/VoiceLengthHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/helper/VoiceLengthHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/misc/AutoLoginWinHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/misc/AutoLoginWinHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/misc/MockScanHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/misc/MockScanHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/misc/MultiWebViewHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/misc/MultiWebViewHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/wx/demo/hook/misc/ShareCheckHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HdShare/WAuxiliary_Public/HEAD/app/src/main/kotlin/wx/demo/hook/misc/ShareCheckHook.kt --------------------------------------------------------------------------------