# ChromeLauncher **Repository Path**: happy_hack/chrome-launcher ## Basic Information - **Project Name**: ChromeLauncher - **Description**: 一个简洁的 Chrome 自定义启动工具,支持预设启动参数,编译后为单文件 exe - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-27 - **Last Updated**: 2026-01-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Chrome 启动器 一个简洁的 Chrome 自定义启动工具,支持预设启动参数,编译后为单文件 exe。 ## 使用方法 1. 安装 [AutoHotkey v2](https://www.autohotkey.com/) 2. 编辑 `ChromeLauncher.ahk`,修改 `CustomArgs` 填入你需要的参数 3. 右键点击文件 → Compile Script,生成 exe 4. 双击 exe,点击按钮即可启动 Chrome ## 当前配置参数 ``` --dns-server=8.8.8.8,8.8.4.4 --disable-popup-blocking --allow-running-insecure-content --disable-background-networking --no-first-run --proxy-bypass-list=localhost.ptlogin.tiger-sec.cn;localhost.tiger-sec.cn;192.168.*.*;localhost;127.0.0.1 --safebrowsing-disable-auto-update --disable-sync --start-maximized --no-default-browser-check --force-color-profile=srgb --remote-debugging-port=0 --profile-directory=Default --google-url --new-window --window-size=1280,1024 --flag-switches-begin --flag-switches-end --flag-switches-begin --flag-switches-end --do-not-de-elevate --proxy-server=127.0.0.1:8080 ``` ## 参数说明 | 参数 | 说明 | |--------------------------------------|----------------| | `--dns-server=8.8.8.8,8.8.4.4` | 使用 Google DNS | | `--disable-popup-blocking` | 禁用弹窗拦截 | | `--allow-running-insecure-content` | 允许运行不安全内容 | | `--disable-background-networking` | 禁用后台网络活动 | | `--no-first-run` | 跳过首次运行向导 | | `--proxy-bypass-list=` | 代理白名单 | | `--safebrowsing-disable-auto-update` | 禁用安全浏览自动更新 | | `--disable-sync` | 禁用同步功能 | | `--start-maximized` | 最大化启动 | | `--no-default-browser-check` | 跳过默认浏览器检查 | | `--force-color-profile=srgb` | 强制 sRGB 色彩配置 | | `--remote-debugging-port=0` | 随机调试端口 | | `--profile-directory=Default` | 使用默认配置目录 | | `--new-window` | 新窗口打开 | | `--window-size=1280,1024` | 窗口尺寸 1280x1024 | | `--do-not-de-elevate` | 保持提升权限运行 | | `--proxy-server=` | 设置http代理服务器 | | `--user-data-dir=` | 临时数据目录 | ## 要求 - Windows 系统 - AutoHotkey v2.0+(仅编译时需要) - Google Chrome