Update chrome.js

This commit is contained in:
Namhyeon Go 2021-06-20 05:57:17 +09:00 committed by GitHub
parent 2d393b6a10
commit d8dc4e99d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -221,7 +221,7 @@ exports.start = function(url, proxyPort, profileName, userDataDir, installedDir)
.setProfile(profileName, installedDir)
.setUserDataDir(userDataDir)
.setInstalledDir(installedDir)
.open(url);
.open(url)
;
};
@ -232,5 +232,6 @@ exports.startWithDebugging = function(url, proxy, profileName, userDataDir, inst
.setUserDataDir(userDataDir)
.setInstalledDir(installedDir)
.setDebuggingPort(debuggingPort)
.open(url);
.open(url)
;
};