mac-wechat-dual-open
Installation
SKILL.md
Mac WeChat Dual Open
Create a second WeChat instance on macOS for running two accounts simultaneously.
Core Method
The underlying mechanism is simple — macOS distinguishes apps by their bundle identifier. By copying WeChat, changing the copy's bundle ID, and re-signing it locally, macOS treats the copy as a separate app that can run alongside the original:
- Copy
/Applications/WeChat.appto~/Applications/WeChat-2.app. - Change the copy's
CFBundleIdentifier(e.g., tocom.tencent.xin2). - Re-sign the copy with
codesign --force --deep --sign -. - Launch the copy via its executable directly.
No third-party injection tools or modified binaries required.
Prerequisites
Related skills