> For the complete documentation index, see [llms.txt](https://help.cliproxy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.cliproxy.com/browser1/google.md).

# Google Chrome

## Method 1: Using Chrome Launch Parameters

1. **Close Chrome** if it's open.
2. Open **Command Prompt** or **PowerShell** (in administrator mode).
3. Navigate to Chrome's installation directory, usually found at:
   * `C:\Program Files\Google\Chrome\Application\`
   * or `C:\Program Files (x86)\Google\Chrome\Application\`
4. Enter the following command to launch Chrome with the `--proxy-server` parameter, specifying your SOCKS5 proxy:

   ```bash
   start chrome.exe --proxy-server="socks5://<proxy-server>:<port>"
   ```

   For example:

   ```bash
   start chrome.exe --proxy-server="socks5://127.0.0.1:1080"
   ```

   This will start Chrome and route traffic through the specified SOCKS5 proxy.
5. If you want to use HTTP proxy, **change socks5** in the above command to **http**.

## Method 2: Using System Proxy Settings

1. Open **Windows Settings**.
2. Go to **Network & Internet** > **Proxy**.
3. Under **Manual proxy setup**, enable **Use a proxy server**, and enter the SOCKS5 proxy IP address and port.
4. Click **Save**, and then restart Chrome.

This method will make Chrome automatically use the system proxy settings.

**Special note: Chrome cannot directly set the account and password, so the above steps are only valid for static IP whitelist mode. If you want to use Cliproxy traffic plan, you need to download the extension program for configuration.**


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.cliproxy.com/browser1/google.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
