├── .gitignore ├── CHANGELOG.md ├── README.md ├── assets └── demo.gif ├── config.py ├── data.example ├── comments_for_profiles.json ├── default_extensions │ └── .gitkeep ├── profiles │ └── .gitkeep └── scripts │ ├── chrome │ ├── agent_switcher │ │ ├── README.md │ │ └── config.json │ ├── chrome_initial_setup │ │ ├── README.md │ │ └── config.json │ ├── omega_proxy_setup │ │ ├── README.md │ │ ├── config.json │ │ └── proxies.txt │ └── rabby_import │ │ ├── README.md │ │ ├── config.json │ │ └── secrets.txt │ └── manager │ └── .gitkeep ├── main.py ├── requirements.txt ├── src ├── __init__.py ├── chrome │ ├── __init__.py │ ├── chrome.py │ └── scripts │ │ ├── __init__.py │ │ ├── agent_switcher.py │ │ ├── chrome_initial_setup.py │ │ ├── javascript │ │ └── test.js │ │ ├── omega_proxy_setup.py │ │ ├── rabby_import.py │ │ └── utils │ │ ├── __init__.py │ │ └── helpers.py ├── client │ ├── __init__.py │ ├── menu │ │ ├── __init__.py │ │ ├── create_multiple_profiles.py │ │ ├── launch_multiple_profiles.py │ │ ├── manage_extensions.py │ │ ├── run_chrome_scripts_on_multiple_profiles.py │ │ ├── run_manager_scripts_on_multiple_profiles.py │ │ ├── show_all_profiles.py │ │ ├── update_comments.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── helpers.py │ │ │ └── select_profiles.py │ └── template.html ├── manager │ ├── __init__.py │ ├── manager.py │ └── scripts │ │ ├── __init__.py │ │ ├── chrome_initial_setup.py │ │ └── test_script.py └── utils │ ├── __init__.py │ ├── constants.py │ └── helpers.py └── start.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/config.py -------------------------------------------------------------------------------- /data.example/comments_for_profiles.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data.example/default_extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data.example/profiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data.example/scripts/chrome/agent_switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/agent_switcher/README.md -------------------------------------------------------------------------------- /data.example/scripts/chrome/agent_switcher/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/agent_switcher/config.json -------------------------------------------------------------------------------- /data.example/scripts/chrome/chrome_initial_setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/chrome_initial_setup/README.md -------------------------------------------------------------------------------- /data.example/scripts/chrome/chrome_initial_setup/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/chrome_initial_setup/config.json -------------------------------------------------------------------------------- /data.example/scripts/chrome/omega_proxy_setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/omega_proxy_setup/README.md -------------------------------------------------------------------------------- /data.example/scripts/chrome/omega_proxy_setup/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/omega_proxy_setup/config.json -------------------------------------------------------------------------------- /data.example/scripts/chrome/omega_proxy_setup/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/omega_proxy_setup/proxies.txt -------------------------------------------------------------------------------- /data.example/scripts/chrome/rabby_import/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/rabby_import/README.md -------------------------------------------------------------------------------- /data.example/scripts/chrome/rabby_import/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/rabby_import/config.json -------------------------------------------------------------------------------- /data.example/scripts/chrome/rabby_import/secrets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/data.example/scripts/chrome/rabby_import/secrets.txt -------------------------------------------------------------------------------- /data.example/scripts/manager/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | questionary==2.1.0 2 | selenium==4.28.1 3 | loguru==0.6.0 4 | rich==13.9.4 5 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/chrome/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/chrome/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/chrome/chrome.py -------------------------------------------------------------------------------- /src/chrome/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/chrome/scripts/__init__.py -------------------------------------------------------------------------------- /src/chrome/scripts/agent_switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/chrome/scripts/agent_switcher.py -------------------------------------------------------------------------------- /src/chrome/scripts/chrome_initial_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/chrome/scripts/chrome_initial_setup.py -------------------------------------------------------------------------------- /src/chrome/scripts/javascript/test.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World"); -------------------------------------------------------------------------------- /src/chrome/scripts/omega_proxy_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/chrome/scripts/omega_proxy_setup.py -------------------------------------------------------------------------------- /src/chrome/scripts/rabby_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/chrome/scripts/rabby_import.py -------------------------------------------------------------------------------- /src/chrome/scripts/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .helpers import * 2 | -------------------------------------------------------------------------------- /src/chrome/scripts/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/chrome/scripts/utils/helpers.py -------------------------------------------------------------------------------- /src/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/client/menu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/__init__.py -------------------------------------------------------------------------------- /src/client/menu/create_multiple_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/create_multiple_profiles.py -------------------------------------------------------------------------------- /src/client/menu/launch_multiple_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/launch_multiple_profiles.py -------------------------------------------------------------------------------- /src/client/menu/manage_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/manage_extensions.py -------------------------------------------------------------------------------- /src/client/menu/run_chrome_scripts_on_multiple_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/run_chrome_scripts_on_multiple_profiles.py -------------------------------------------------------------------------------- /src/client/menu/run_manager_scripts_on_multiple_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/run_manager_scripts_on_multiple_profiles.py -------------------------------------------------------------------------------- /src/client/menu/show_all_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/show_all_profiles.py -------------------------------------------------------------------------------- /src/client/menu/update_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/update_comments.py -------------------------------------------------------------------------------- /src/client/menu/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/utils/__init__.py -------------------------------------------------------------------------------- /src/client/menu/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/utils/helpers.py -------------------------------------------------------------------------------- /src/client/menu/utils/select_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/menu/utils/select_profiles.py -------------------------------------------------------------------------------- /src/client/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/client/template.html -------------------------------------------------------------------------------- /src/manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/manager/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/manager/manager.py -------------------------------------------------------------------------------- /src/manager/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/manager/scripts/__init__.py -------------------------------------------------------------------------------- /src/manager/scripts/chrome_initial_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/manager/scripts/chrome_initial_setup.py -------------------------------------------------------------------------------- /src/manager/scripts/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/manager/scripts/test_script.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/utils/constants.py -------------------------------------------------------------------------------- /src/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/src/utils/helpers.py -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBusher/Chrome-profiles-manager/HEAD/start.bat --------------------------------------------------------------------------------