add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,37 @@
# chromium
> 由谷歌主要开发和维护的开源网页浏览器。
> 注意:您可能需要将 `chromium` 命令替换为您想要的网页浏览器,例如 `brave`、`google-chrome`、`opera` 或 `vivaldi`。
> 更多信息:<https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
- 打开特定的 URL 或文件:
`chromium {{https://example.com|path/to/file.html}}`
- 以隐身模式打开:
`chromium --incognito {{example.com}}`
- 在新窗口中打开:
`chromium --new-window {{example.com}}`
- 以应用模式打开没有工具栏、URL 地址栏、按钮等):
`chromium --app={{https://example.com}}`
- 使用代理服务器:
`chromium --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
- 使用自定义的配置文件目录打开:
`chromium --user-data-dir={{path/to/directory}}`
- 在不进行 CORS 验证的情况下打开(适合测试 API
`chromium --user-data-dir={{path/to/directory}} --disable-web-security`
- 为每个打开的标签页打开 DevTools 窗口:
`chromium --auto-open-devtools-for-tabs`