|
@@ -1,9 +1,8 @@
|
|
|
# 크롬 Command-Line 스위치 지원
|
|
|
|
|
|
-The following command lines switches in Chrome browser are also supported in
|
|
|
-Electron, you can use [app.commandLine.appendSwitch][append-switch] to append
|
|
|
-them in your app's main script before the [ready][ready] event of [app][app]
|
|
|
-module is emitted:
|
|
|
+다음 Command-Line 스위치들은 크롬 브라우저에서 제공되는 추가 옵션이며 Electron에서도 지원합니다.
|
|
|
+[app][app]의 [ready][ready]이벤트가 작동하기 전에 [app.commandLine.appendSwitch][append-switch] API를 사용하면
|
|
|
+어플리케이션 내부에서 스위치들을 추가할 수 있습니다:
|
|
|
|
|
|
```javascript
|
|
|
var app = require('app');
|
|
@@ -17,35 +16,33 @@ app.on('ready', function() {
|
|
|
|
|
|
## --client-certificate=`path`
|
|
|
|
|
|
-Sets `path` of client certificate file.
|
|
|
+`path`를 클라이언트 인증서로 설정합니다.
|
|
|
|
|
|
## --ignore-connections-limit=`domains`
|
|
|
|
|
|
-Ignore the connections limit for `domains` list seperated by `,`.
|
|
|
+`domains` 리스트(`,`로 구분)의 연결 제한을 무시합니다.
|
|
|
|
|
|
## --disable-http-cache
|
|
|
|
|
|
-Disables the disk cache for HTTP requests.
|
|
|
+HTTP 요청 캐시를 비활성화 합니다.
|
|
|
|
|
|
## --remote-debugging-port=`port`
|
|
|
|
|
|
-Enables remote debug over HTTP on the specified `port`.
|
|
|
+지정한 `port`에 HTTP기반의 리모트 디버거를 활성화 시킵니다. (개발자 콘솔)
|
|
|
|
|
|
## --proxy-server=`address:port`
|
|
|
|
|
|
-Uses a specified proxy server, overrides system settings. This switch only
|
|
|
-affects HTTP and HTTPS requests.
|
|
|
+시스템 설정의 프록시 서버를 무시하고 지정한 서버로 연결합니다. HTTP와 HTTPS 요청에만 적용됩니다.
|
|
|
|
|
|
## --no-proxy-server
|
|
|
|
|
|
-Don't use a proxy server, always make direct connections. Overrides any other
|
|
|
-proxy server flags that are passed.
|
|
|
+프록시 서버를 사용하지 않습니다. 다른 프록시 서버 플래그 및 설정을 무시하고 언제나 직접 연결을 사용합니다.
|
|
|
|
|
|
## --host-rules=`rules`
|
|
|
|
|
|
-Comma-separated list of `rules` that control how hostnames are mapped.
|
|
|
+Hostname 맵핑 규칙을 설정합니다. (`,`로 분리)
|
|
|
|
|
|
-For example:
|
|
|
+예시:
|
|
|
|
|
|
* `MAP * 127.0.0.1` Forces all hostnames to be mapped to 127.0.0.1
|
|
|
* `MAP *.google.com proxy` Forces all google.com subdomains to be resolved to
|
|
@@ -61,7 +58,7 @@ connection, and the endpoint host in a `SOCKS` proxy connection).
|
|
|
|
|
|
## --host-resolver-rules=`rules`
|
|
|
|
|
|
-Like `--host-rules` but these `rules` only apply to the host resolver.
|
|
|
+`--host-rules` 플래그와 비슷하지만 이 플래그는 host resolver에만 적용됩니다.
|
|
|
|
|
|
[app]: app-ko.md
|
|
|
[append-switch]: app-ko.md#appcommandlineappendswitchswitch-value
|
|
@@ -69,26 +66,25 @@ Like `--host-rules` but these `rules` only apply to the host resolver.
|
|
|
|
|
|
## --ignore-certificate-errors
|
|
|
|
|
|
-Ignores certificate related errors.
|
|
|
+인증서 에러를 무시합니다.
|
|
|
|
|
|
## --ppapi-flash-path=`path`
|
|
|
|
|
|
-Sets `path` of pepper flash plugin.
|
|
|
+Pepper 플래시 플러그인의 위치를 설정합니다.
|
|
|
|
|
|
## --ppapi-flash-version=`version`
|
|
|
|
|
|
-Sets `version` of pepper flash plugin.
|
|
|
+Pepper 플래시 플러그인의 버전을 설정합니다.
|
|
|
|
|
|
## --log-net-log=`path`
|
|
|
|
|
|
-Enables saving net log events and writes them to `path`.
|
|
|
+Net log 이벤트를 지정한 `path`에 로그로 기록합니다.
|
|
|
|
|
|
## --v=`log_level`
|
|
|
|
|
|
-Gives the default maximal active V-logging level; 0 is the default. Normally
|
|
|
-positive values are used for V-logging levels.
|
|
|
+기본 V-logging 최대 활성화 레벨을 지정합니다. 기본값은 0입니다. 기본적으로 양수를 레벨로 사용합니다.
|
|
|
|
|
|
-Passing `--v=-1` will disable logging.
|
|
|
+`--v=-1`를 사용하면 로깅이 비활성화 됩니다.
|
|
|
|
|
|
## --vmodule=`pattern`
|
|
|
|