├── .gitignore ├── main.py ├── profile_manager ├── __init__.py ├── cli.py ├── manager.py ├── path.py └── structures.py ├── readme.md ├── requirements.txt ├── run.bat └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | user_data/ 2 | venv/ 3 | .DS_Store 4 | .idea/ 5 | *.pyc 6 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroOfAutomation/AntidetectBrowserSolution/HEAD/main.py -------------------------------------------------------------------------------- /profile_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile_manager/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroOfAutomation/AntidetectBrowserSolution/HEAD/profile_manager/cli.py -------------------------------------------------------------------------------- /profile_manager/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroOfAutomation/AntidetectBrowserSolution/HEAD/profile_manager/manager.py -------------------------------------------------------------------------------- /profile_manager/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroOfAutomation/AntidetectBrowserSolution/HEAD/profile_manager/path.py -------------------------------------------------------------------------------- /profile_manager/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroOfAutomation/AntidetectBrowserSolution/HEAD/profile_manager/structures.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroOfAutomation/AntidetectBrowserSolution/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroOfAutomation/AntidetectBrowserSolution/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroOfAutomation/AntidetectBrowserSolution/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroOfAutomation/AntidetectBrowserSolution/HEAD/run.sh --------------------------------------------------------------------------------