├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── Install.md ├── LICENSE ├── Other ├── Install.sh ├── Products │ └── Debug │ │ └── WeChatPlugin.framework │ │ ├── Headers │ │ └── WeChatPlugin.h │ │ ├── Modules │ │ └── module.modulemap │ │ ├── Resources │ │ ├── Base.lproj │ │ │ ├── TKAboutWindowController.nib │ │ │ └── TKRemoteControlWindowController.nib │ │ ├── Info.plist │ │ ├── TKAutoReplyWindowController.nib │ │ ├── TKDownloadWindowController.nib │ │ ├── TKRemoteControlCommands.plist │ │ ├── TKRemoteControlScript.scpt │ │ ├── en.lproj │ │ │ ├── Localizable.strings │ │ │ ├── TKAboutWindowController.nib │ │ │ └── about.rtfd │ │ │ │ └── TXT.rtf │ │ ├── zh-Hans.lproj │ │ │ ├── Localizable.strings │ │ │ ├── TKRemoteControlWindowController.nib │ │ │ └── about.rtfd │ │ │ │ └── TXT.rtf │ │ └── zh-Hant.lproj │ │ │ ├── Localizable.strings │ │ │ ├── TKAboutWindowController.nib │ │ │ ├── TKRemoteControlWindowController.nib │ │ │ └── about.rtfd │ │ │ └── TXT.rtf │ │ ├── Versions │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── WeChatPlugin.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── TKAboutWindowController.nib │ │ │ │ │ └── TKRemoteControlWindowController.nib │ │ │ │ ├── Info.plist │ │ │ │ ├── TKAutoReplyWindowController.nib │ │ │ │ ├── TKDownloadWindowController.nib │ │ │ │ ├── TKRemoteControlCommands.plist │ │ │ │ ├── TKRemoteControlScript.scpt │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Localizable.strings │ │ │ │ │ ├── TKAboutWindowController.nib │ │ │ │ │ └── about.rtfd │ │ │ │ │ │ └── TXT.rtf │ │ │ │ ├── zh-Hans.lproj │ │ │ │ │ ├── Localizable.strings │ │ │ │ │ ├── TKRemoteControlWindowController.nib │ │ │ │ │ └── about.rtfd │ │ │ │ │ │ └── TXT.rtf │ │ │ │ └── zh-Hant.lproj │ │ │ │ │ ├── Localizable.strings │ │ │ │ │ ├── TKAboutWindowController.nib │ │ │ │ │ ├── TKRemoteControlWindowController.nib │ │ │ │ │ └── about.rtfd │ │ │ │ │ └── TXT.rtf │ │ │ └── WeChatPlugin │ │ └── Current │ │ │ ├── Headers │ │ │ └── WeChatPlugin.h │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ ├── Base.lproj │ │ │ │ ├── TKAboutWindowController.nib │ │ │ │ └── TKRemoteControlWindowController.nib │ │ │ ├── Info.plist │ │ │ ├── TKAutoReplyWindowController.nib │ │ │ ├── TKDownloadWindowController.nib │ │ │ ├── TKRemoteControlCommands.plist │ │ │ ├── TKRemoteControlScript.scpt │ │ │ ├── en.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── TKAboutWindowController.nib │ │ │ │ └── about.rtfd │ │ │ │ │ └── TXT.rtf │ │ │ ├── zh-Hans.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── TKRemoteControlWindowController.nib │ │ │ │ └── about.rtfd │ │ │ │ │ └── TXT.rtf │ │ │ └── zh-Hant.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── TKAboutWindowController.nib │ │ │ │ ├── TKRemoteControlWindowController.nib │ │ │ │ └── about.rtfd │ │ │ │ └── TXT.rtf │ │ │ └── WeChatPlugin │ │ └── WeChatPlugin ├── ScreenShots │ ├── alfred_chat_log.gif │ ├── alfred_search.gif │ ├── auto_reply.png │ ├── emotion_copy_export.png │ ├── en │ │ ├── alfred.gif │ │ ├── auto_auth_and_new.gif │ │ ├── auto_reply.gif │ │ ├── emotion_copy_export.png │ │ ├── multiselect_and_stick_bottom_and_clear_empty.gif │ │ ├── prevent_recall.gif │ │ ├── quick_reply_and_make_read.gif │ │ ├── remote_control.gif │ │ └── wechatplugin.png │ ├── install_download.png │ ├── install_terminal.png │ ├── notification_quick_reply.gif │ ├── remote_control.png │ ├── session_empty_and_clean.gif │ ├── terminal_path.png │ ├── voice_remote_control.gif │ └── wechatplugin.png ├── Uninstall.sh ├── Update.sh ├── UpdateRemoteControlCommandsPlist.py └── insert_dylib ├── Podfile ├── Q&A.md ├── README.md ├── README_EN.md ├── WeChatPlugin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── TK.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── WeChatPlugin.xcscheme │ └── xcschememanagement.plist ├── WeChatPlugin.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── TK.xcuserdatad │ ├── IDEFindNavigatorScopes.plist │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist └── WeChatPlugin ├── Info.plist ├── Sources ├── Common │ ├── Category │ │ ├── NSButton+Action.h │ │ ├── NSButton+Action.m │ │ ├── NSDate+Action.h │ │ ├── NSDate+Action.m │ │ ├── NSMenu+Action.h │ │ ├── NSMenu+Action.m │ │ ├── NSMenuItem+Action.h │ │ ├── NSMenuItem+Action.m │ │ ├── NSString+Action.h │ │ ├── NSString+Action.m │ │ ├── NSTextField+Action.h │ │ ├── NSTextField+Action.m │ │ ├── NSView+Action.h │ │ ├── NSView+Action.m │ │ ├── NSWindowController+Action.h │ │ └── NSWindowController+Action.m │ ├── Macro │ │ ├── ColorConstant.h │ │ ├── DefineConstant.h │ │ └── NotifyConstant.h │ └── TKPrefixHeader.pch ├── Config │ ├── TKWeChatPluginConfig.h │ └── TKWeChatPluginConfig.m ├── Hook │ ├── MMChatsTableCellView+hook.h │ ├── MMChatsTableCellView+hook.m │ ├── MMStickerMessageCellView+hook.h │ ├── MMStickerMessageCellView+hook.m │ ├── WeChat+hook.h │ └── WeChat+hook.m ├── Managers │ ├── TKAssistantMenuManager.h │ ├── TKAssistantMenuManager.m │ ├── TKCacheManager.h │ ├── TKCacheManager.m │ ├── TKHTTPManager.h │ ├── TKHTTPManager.m │ ├── TKMessageManager.h │ ├── TKMessageManager.m │ ├── TKRemoteControlCommands.plist │ ├── TKRemoteControlManager.h │ ├── TKRemoteControlManager.m │ ├── TKVersionManager.h │ ├── TKVersionManager.m │ ├── TKWebServerManager.h │ └── TKWebServerManager.m ├── Models │ ├── TKAutoReplyModel.h │ ├── TKAutoReplyModel.m │ ├── TKBaseModel.h │ ├── TKBaseModel.m │ ├── TKIgnoreSessonModel.h │ ├── TKIgnoreSessonModel.m │ ├── TKRemoteControlModel.h │ └── TKRemoteControlModel.m ├── Utils │ ├── TKHelper.h │ ├── TKHelper.m │ ├── TKUtility.h │ └── TKUtility.m ├── Vendor │ ├── fishhook.c │ └── fishhook.h ├── Views │ ├── AutoReply │ │ ├── TKAutoReplyCell.h │ │ ├── TKAutoReplyCell.m │ │ ├── TKAutoReplyContentView.h │ │ └── TKAutoReplyContentView.m │ └── RemoteControl │ │ ├── TKRemoteControlCell.h │ │ └── TKRemoteControlCell.m └── WindowControllers │ ├── About │ ├── Base.lproj │ │ └── TKAboutWindowController.xib │ ├── TKAboutWindowController.h │ ├── TKAboutWindowController.m │ ├── en.lproj │ │ └── TKAboutWindowController.xib │ └── zh-Hant.lproj │ │ └── TKAboutWindowController.xib │ ├── AutoReply │ ├── TKAutoReplyWindowController.h │ ├── TKAutoReplyWindowController.m │ └── TKAutoReplyWindowController.xib │ ├── Download │ ├── TKDownloadWindowController.h │ ├── TKDownloadWindowController.m │ └── TKDownloadWindowController.xib │ └── RemoteControl │ ├── Base.lproj │ └── TKRemoteControlWindowController.xib │ ├── TKRemoteControlWindowController.h │ ├── TKRemoteControlWindowController.m │ ├── zh-Hans.lproj │ └── TKRemoteControlWindowController.xib │ └── zh-Hant.lproj │ └── TKRemoteControlWindowController.xib ├── TKRemoteControlScript.scpt ├── WeChatPlugin.h ├── en.lproj ├── Localizable.strings └── about.rtfd │ └── TXT.rtf ├── main.mm ├── zh-Hans.lproj ├── Localizable.strings └── about.rtfd │ └── TXT.rtf └── zh-Hant.lproj ├── Localizable.strings └── about.rtfd └── TXT.rtf /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Install.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/Install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Install.sh -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Headers/WeChatPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Headers/WeChatPlugin.h -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/Base.lproj/TKAboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/Base.lproj/TKAboutWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/Base.lproj/TKRemoteControlWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/Base.lproj/TKRemoteControlWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/TKAutoReplyWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/TKAutoReplyWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/TKDownloadWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/TKDownloadWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/TKRemoteControlCommands.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/TKRemoteControlCommands.plist -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/TKRemoteControlScript.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/TKRemoteControlScript.scpt -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/en.lproj/TKAboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/en.lproj/TKAboutWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/en.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/en.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hans.lproj/TKRemoteControlWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hans.lproj/TKRemoteControlWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hans.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hans.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hant.lproj/TKAboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hant.lproj/TKAboutWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hant.lproj/TKRemoteControlWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hant.lproj/TKRemoteControlWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hant.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Resources/zh-Hant.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Headers/WeChatPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Headers/WeChatPlugin.h -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/Base.lproj/TKAboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/Base.lproj/TKAboutWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/Base.lproj/TKRemoteControlWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/Base.lproj/TKRemoteControlWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/TKAutoReplyWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/TKAutoReplyWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/TKDownloadWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/TKDownloadWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/TKRemoteControlCommands.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/TKRemoteControlCommands.plist -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/TKRemoteControlScript.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/TKRemoteControlScript.scpt -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/en.lproj/TKAboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/en.lproj/TKAboutWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/en.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/en.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hans.lproj/TKRemoteControlWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hans.lproj/TKRemoteControlWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hans.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hans.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hant.lproj/TKAboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hant.lproj/TKAboutWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hant.lproj/TKRemoteControlWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hant.lproj/TKRemoteControlWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hant.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/Resources/zh-Hant.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/A/WeChatPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/A/WeChatPlugin -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Headers/WeChatPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Headers/WeChatPlugin.h -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Modules/module.modulemap -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/Base.lproj/TKAboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/Base.lproj/TKAboutWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/Base.lproj/TKRemoteControlWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/Base.lproj/TKRemoteControlWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/TKAutoReplyWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/TKAutoReplyWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/TKDownloadWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/TKDownloadWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/TKRemoteControlCommands.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/TKRemoteControlCommands.plist -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/TKRemoteControlScript.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/TKRemoteControlScript.scpt -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/en.lproj/TKAboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/en.lproj/TKAboutWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/en.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/en.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hans.lproj/TKRemoteControlWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hans.lproj/TKRemoteControlWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hans.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hans.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hant.lproj/TKAboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hant.lproj/TKAboutWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hant.lproj/TKRemoteControlWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hant.lproj/TKRemoteControlWindowController.nib -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hant.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/Resources/zh-Hant.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/Versions/Current/WeChatPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/Versions/Current/WeChatPlugin -------------------------------------------------------------------------------- /Other/Products/Debug/WeChatPlugin.framework/WeChatPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Products/Debug/WeChatPlugin.framework/WeChatPlugin -------------------------------------------------------------------------------- /Other/ScreenShots/alfred_chat_log.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/alfred_chat_log.gif -------------------------------------------------------------------------------- /Other/ScreenShots/alfred_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/alfred_search.gif -------------------------------------------------------------------------------- /Other/ScreenShots/auto_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/auto_reply.png -------------------------------------------------------------------------------- /Other/ScreenShots/emotion_copy_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/emotion_copy_export.png -------------------------------------------------------------------------------- /Other/ScreenShots/en/alfred.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/en/alfred.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/auto_auth_and_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/en/auto_auth_and_new.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/auto_reply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/en/auto_reply.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/emotion_copy_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/en/emotion_copy_export.png -------------------------------------------------------------------------------- /Other/ScreenShots/en/multiselect_and_stick_bottom_and_clear_empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/en/multiselect_and_stick_bottom_and_clear_empty.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/prevent_recall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/en/prevent_recall.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/quick_reply_and_make_read.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/en/quick_reply_and_make_read.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/remote_control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/en/remote_control.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/wechatplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/en/wechatplugin.png -------------------------------------------------------------------------------- /Other/ScreenShots/install_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/install_download.png -------------------------------------------------------------------------------- /Other/ScreenShots/install_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/install_terminal.png -------------------------------------------------------------------------------- /Other/ScreenShots/notification_quick_reply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/notification_quick_reply.gif -------------------------------------------------------------------------------- /Other/ScreenShots/remote_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/remote_control.png -------------------------------------------------------------------------------- /Other/ScreenShots/session_empty_and_clean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/session_empty_and_clean.gif -------------------------------------------------------------------------------- /Other/ScreenShots/terminal_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/terminal_path.png -------------------------------------------------------------------------------- /Other/ScreenShots/voice_remote_control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/voice_remote_control.gif -------------------------------------------------------------------------------- /Other/ScreenShots/wechatplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/ScreenShots/wechatplugin.png -------------------------------------------------------------------------------- /Other/Uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Uninstall.sh -------------------------------------------------------------------------------- /Other/Update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/Update.sh -------------------------------------------------------------------------------- /Other/UpdateRemoteControlCommandsPlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/UpdateRemoteControlCommandsPlist.py -------------------------------------------------------------------------------- /Other/insert_dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Other/insert_dylib -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :osx, '10.12' 2 | inhibit_all_warnings! 3 | 4 | target 'WeChatPlugin' do 5 | pod 'GCDWebServer', '~> 3.4.2' 6 | end 7 | -------------------------------------------------------------------------------- /Q&A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/Q&A.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Forked from tk 2 | 3 | ### Other 4 | https://github.com/MustangYM/WeChatExtension-ForMac 5 | -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/README_EN.md -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcschemes/WeChatPlugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcschemes/WeChatPlugin.xcscheme -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WeChatPlugin.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WeChatPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WeChatPlugin.xcworkspace/xcuserdata/TK.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin.xcworkspace/xcuserdata/TK.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /WeChatPlugin.xcworkspace/xcuserdata/TK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin.xcworkspace/xcuserdata/TK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WeChatPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Info.plist -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSButton+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSButton+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSButton+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSButton+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSDate+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSDate+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSDate+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSDate+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSMenu+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSMenu+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSMenu+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSMenu+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSMenuItem+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSMenuItem+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSMenuItem+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSMenuItem+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSString+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSString+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSString+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSString+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSTextField+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSTextField+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSTextField+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSTextField+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSView+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSView+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSView+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSView+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSWindowController+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSWindowController+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSWindowController+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Category/NSWindowController+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Macro/ColorConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Macro/ColorConstant.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Macro/DefineConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Macro/DefineConstant.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Macro/NotifyConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/Macro/NotifyConstant.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/TKPrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Common/TKPrefixHeader.pch -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Config/TKWeChatPluginConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Config/TKWeChatPluginConfig.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Config/TKWeChatPluginConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Config/TKWeChatPluginConfig.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/MMChatsTableCellView+hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Hook/MMChatsTableCellView+hook.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/MMChatsTableCellView+hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Hook/MMChatsTableCellView+hook.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/MMStickerMessageCellView+hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Hook/MMStickerMessageCellView+hook.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/MMStickerMessageCellView+hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Hook/MMStickerMessageCellView+hook.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/WeChat+hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Hook/WeChat+hook.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/WeChat+hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Hook/WeChat+hook.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKAssistantMenuManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKAssistantMenuManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKAssistantMenuManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKAssistantMenuManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKCacheManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKCacheManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKCacheManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKCacheManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKHTTPManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKHTTPManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKHTTPManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKHTTPManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKMessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKMessageManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKMessageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKMessageManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKRemoteControlCommands.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKRemoteControlCommands.plist -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKRemoteControlManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKRemoteControlManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKRemoteControlManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKRemoteControlManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKVersionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKVersionManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKVersionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKVersionManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKWebServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKWebServerManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKWebServerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Managers/TKWebServerManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKAutoReplyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Models/TKAutoReplyModel.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKAutoReplyModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Models/TKAutoReplyModel.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKBaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Models/TKBaseModel.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKBaseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Models/TKBaseModel.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKIgnoreSessonModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Models/TKIgnoreSessonModel.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKIgnoreSessonModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Models/TKIgnoreSessonModel.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKRemoteControlModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Models/TKRemoteControlModel.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKRemoteControlModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Models/TKRemoteControlModel.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Utils/TKHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Utils/TKHelper.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Utils/TKHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Utils/TKHelper.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Utils/TKUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Utils/TKUtility.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Utils/TKUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Utils/TKUtility.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Vendor/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Vendor/fishhook.c -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Vendor/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Vendor/fishhook.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyCell.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyCell.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyContentView.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyContentView.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/RemoteControl/TKRemoteControlCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Views/RemoteControl/TKRemoteControlCell.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/RemoteControl/TKRemoteControlCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/Views/RemoteControl/TKRemoteControlCell.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/Base.lproj/TKAboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/About/Base.lproj/TKAboutWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/TKAboutWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/About/TKAboutWindowController.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/TKAboutWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/About/TKAboutWindowController.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/en.lproj/TKAboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/About/en.lproj/TKAboutWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/zh-Hant.lproj/TKAboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/About/zh-Hant.lproj/TKAboutWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/Base.lproj/TKRemoteControlWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/Base.lproj/TKRemoteControlWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/TKRemoteControlWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/TKRemoteControlWindowController.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/TKRemoteControlWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/TKRemoteControlWindowController.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/zh-Hans.lproj/TKRemoteControlWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/zh-Hans.lproj/TKRemoteControlWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/zh-Hant.lproj/TKRemoteControlWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/zh-Hant.lproj/TKRemoteControlWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/TKRemoteControlScript.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/TKRemoteControlScript.scpt -------------------------------------------------------------------------------- /WeChatPlugin/WeChatPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/WeChatPlugin.h -------------------------------------------------------------------------------- /WeChatPlugin/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /WeChatPlugin/en.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/en.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /WeChatPlugin/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/main.mm -------------------------------------------------------------------------------- /WeChatPlugin/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /WeChatPlugin/zh-Hans.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/zh-Hans.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /WeChatPlugin/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /WeChatPlugin/zh-Hant.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iostyle/WeChatPlugin/HEAD/WeChatPlugin/zh-Hant.lproj/about.rtfd/TXT.rtf --------------------------------------------------------------------------------