k1tbyte / Wand-Enhancer
- понедельник, 13 июля 2026 г. в 00:00:04
Advanced UX and interoperability extension for Wand (WeMod) app
🚨 IMPORTANT NOTICE: THIS PROJECT HAS NO OFFICIAL YOUTUBE TUTORIALS, GUIDES, OR PREBUILT EXECUTABLE DOWNLOADS. 🚨
There are no official videos showing how to install or use this tool. Scammers are creating fake tutorials using this project's name and placing malware/password stealers in the video descriptions. Official GitHub releases contain release notes only, not .exe files. If you downloaded an .exe or archive from a YouTube link, a random website, or a third-party mirror, you did not get it from this project. We are not responsible for third-party downloads.
Yes. This project is entirely open-source, allowing anyone to audit the code. It operates strictly locally, does not require internet access, and makes zero network requests. It simply adjusts local client settings to enhance your user experience.
✅ Local environment configuration management
✅ Automated compatibility adjustments for new client versions
✅ Advanced layout and theme customization (Client-side only)
✅ AI Features
✅ Remote web panel (Remote Connect on mobile)
WandEnhancer includes a built-in Remote Web Panel allowing you to control app features directly from your phone.
3223 for your local network. If Windows marked your connection as Public, switching it to Private can also help.This repository does not publish official compiled binaries. Build your own executable from your own fork using GitHub Actions.
WandEnhancer.exe to apply local client modifications.Here how you do it:
You can inject your own JavaScript into Wand at patch time to tweak or fix things in the client UI. This reuses the same renderer injection the Remote Web Panel uses, so it requires the Remote Web Panel patch to be enabled.
How to add a script
.js files (only existing .js files are accepted), or.js files into a renderer-scripts/ folder placed next to the patcher executable.Then patch as usual — your scripts are bundled into the client and run inside Wand's window.
How it runs
require).WandEnhancer helper is available: WandEnhancer.log(...), WandEnhancer.remoteUrl, WandEnhancer.apiVersion.Minimal example (hello.js)
// Injected scripts can run multiple times — guard one-time setup.
if (!globalThis.__helloScriptInstalled) {
globalThis.__helloScriptInstalled = true;
WandEnhancer.log("Hello from my custom script!", WandEnhancer.remoteUrl);
new MutationObserver(() => {
const dialog = document.querySelector("ux-dialog:not([data-seen])");
if (dialog) {
dialog.setAttribute("data-seen", "1");
WandEnhancer.log("A dialog opened.");
}
}).observe(document.documentElement, { childList: true, subtree: true });
}Scripts run with the same privileges as the Wand client. Only add scripts you trust and understand.
Building from source on Windows requires a local development environment.
CMakeNode.js and pnpmVisual Studio 2022 or Build Tools for Visual Studio 2022 with MSBuildDesktop development with C++ workloadcmake, pnpm, and MSBuild are available.build.cmd from Command Prompt or PowerShell.The build script installs the web panel dependencies, builds the frontend, compiles the native helper with CMake, restores NuGet packages, and builds the WPF solution.
.exe in GitHub Releases?
.exe files from YouTube descriptions, random mirrors, Discord attachments, or issue comments.This project is licensed under the Apache-2.0 - see the LICENSE file for details.
If you find this project useful, you can support its development using any of the options below 🙌
Legal Disclaimer: This project is a third-party enhancement tool intended solely for educational, research, and local interoperability purposes. It does not distribute any proprietary code or bypass server-side validations. All modifications are performed locally to customize the user's interface.