|
RUNPARAM=--no-default-browser-check --no-first-run --disable-breakpad --disable-crash-reporter --disable-logging --disable-component-update --disable-background-networking --force-device-scale-factor=1 --disk-cache-dir=nul --disk-cache-size=1 --disable-gpu-program-cache --disable-gpu-shader-disk-cache
--no-default-browser-check 禁用默认浏览器检查
--no-first-run //不显示首次运行向导
--disable-breakpad //禁用崩溃报告
--disable-crash-reporter # 禁用崩溃报告器
--disable-logging: 禁用日志记录,以减少日志记录的资源消耗。
--disable-component-update 禁止组件更新
--disable-background-networking 禁用在后台运行网络请求的多个子系统
--force-device-scale-factor=1 #这段代码最后一个数字 代表着要缩放的倍数 1=100% 1.25=1.25%
--disk-cache-dir # 自定义缓存目录
--disk-cache-size # 自定义缓存最大值(单位byte)
--disable-gpu-program-cache 关闭gpu程序缓存
--disable-gpu-shader-disk-cache 禁用磁盘缓存上的GPU着色器。
--disk-cache-dir=nul
--disk-cache-size=1
这两个不知道具体的功效! |
|