A5 is an open-source project that integrates the powerful Browser Use Python library with a user-friendly RESTful API and Chrome extension. It aims to simplify agentic AI-powered browser automation tasks by providing an all-in-one solution that requires minimal setup, making it accessible to both developers and non-developers alike.
This project is experimental. You can run it easily on macOS by using the executable generated in the Python_server/dist folder (e.g., ./a5browseruse on macOS). For other platforms like Linux and Windows, you can build or run the server similarly (see the Installation steps for more details).
-
Close all Chrome windows completely.
-
Start Chrome with Remote Debugging Enabled (required by Browser Use):
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
-
Make sure you have Python 3.11 or higher installed.
-
From the
Python_serverfolder, install dependencies:pip install -r requirements.txt
-
Close Chrome, and start Chrome with remote debugging:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
-
In a separate terminal window, still in
Python_server, start the server:uvicorn main:app --host 127.0.0.1 --port 8888 --reload --workers 1
-
Once the server is running, open http://127.0.0.1:8888/ to verify it’s active.
- Close all Chrome windows completely.
- Start Chrome with Remote Debugging Enabled:
- Windows (in Command Prompt or PowerShell):
"C:\Program Files\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222
- Linux (in Terminal):
google-chrome --remote-debugging-port=9222
- Windows (in Command Prompt or PowerShell):
- Run the Python Server (similarly as macOS):
cd Python_server pip install -r requirements.txt uvicorn main:app --host 127.0.0.1 --port 8888 --reload --workers 1 - Access the API at http://127.0.0.1:8888/.
If you need a standalone executable on Windows or Linux, you’ll have to build it on that platform (since PyInstaller doesn’t support cross-compiling). The resulting file will be in the
distfolder for that OS.
- Seamless Integration: Combines a Chrome extension with a Python backend to execute browser commands effortlessly
- AI-Powered Automation: Utilizes OpenAI's language models (and future expansions!) to interpret and perform complex browser tasks
- Cross-Platform Support: Compatible with Windows, macOS, and Linux
- Open-Source: Community-driven development to continuously enhance functionality and usability
- RESTful API: Well-documented API endpoints for easy integration and extensibility
Before you begin, ensure you have met the following requirements:
- Python 3.11 or higher installed on your machine (Download Python)
- Google Chrome browser installed (Download Chrome)
- Git installed for cloning the repository (Download Git)
Follow these steps to set up A5-Browser-Use on your local machine.
git clone https://github.com/YourUsername/A5-Browser-Use.git
cd A5-Browser-Use- Navigate to the
Python_serverfolder:cd Python_server - Install the dependencies:
pip install -r requirements.txt
- Close all instances of Chrome, then start it with remote debugging:
- macOS:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
- Windows:
"C:\Program Files\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222
- Linux:
google-chrome --remote-debugging-port=9222
- macOS:
- In a new terminal window (while Chrome is running in remote debugging mode), start the FastAPI server:
uvicorn main:app --host 127.0.0.1 --port 8888 --reload --workers=1
- Go to http://127.0.0.1:8888/ in your browser to confirm the server is running.
- Open Google Chrome and go to Settings → Extensions.
- Enable Developer Mode in the top right corner.
- Click Load unpacked or Load Unpacked Extension.
- Select the
Chrome_extensionfolder from this repository.
Once installed, the extension adds a small arrow on the left side of your browser window. Click it to expand and issue commands to the Python server (powered by the AI backend).
After the setup:
- Open Chrome (in remote debugging mode).
- Start your Python server via
uvicornor the executable fromPython_server/dist(if you built one for your OS). - Click the Arrow in Chrome (added by the extension) to expand the control panel.
- Issue Commands: Type your instruction, and the agent will attempt to perform the requested browser actions.
We welcome contributions from the community! In particular, if you’d like to add support for additional AI providers beyond OpenAI, please open a Pull Request.
- Fork the Project
- Create a new branch (
git checkout -b feature/YourFeature) - Commit your changes (
git commit -m 'Add some feature') - Push to your branch (
git push origin feature/YourFeature) - Open a Pull Request
This project is licensed under the MIT License. Feel free to modify and distribute it as per the license terms.
- Close Chrome Completely before you re-run the server in remote debugging mode. Otherwise, the agent can’t connect properly.
- For Windows and Linux executables, you must build them on their respective OS. PyInstaller won’t cross-compile from macOS.
- The extension simply adds an arrow on the left of your browser that, when clicked, opens a sidebar to issue AI commands.
- Future Plans: We plan to expand beyond OpenAI for multiple LLM backends—stay tuned, or submit a PR!
If you have any questions or run into issues, feel free to open an issue in the repo or reach out to the maintainers. Enjoy A5-Browser-Use!

