v2: tabs, chain builder, obfuscation modes, hop slider, Defender exclusion, firewall kept

Made-with: Cursor
This commit is contained in:
Dr Jones
2026-04-14 17:13:02 -07:00
commit 4bb626498f
45 changed files with 34053 additions and 0 deletions

21
build_exe.bat Normal file
View File

@@ -0,0 +1,21 @@
@echo off
setlocal
cd /d "%~dp0"
python -m pip install -r requirements.txt
python -m pip install pyinstaller
python -m PyInstaller --noconfirm --clean ^
--onefile --windowed ^
--uac-admin ^
--name ProxyChainManager ^
--collect-all customtkinter ^
--hidden-import pystray._win32 ^
run.py
copy /Y "dist\ProxyChainManager.exe" "%USERPROFILE%\Desktop\ProxyChainManager.exe" >nul
echo.
echo Built: dist\ProxyChainManager.exe
echo Copied to: %USERPROFILE%\Desktop\ProxyChainManager.exe
endlocal