Skip to content

Commit

Permalink
Added extra chromium switches in example start-chromium-portable.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
pwlin committed Mar 1, 2015
1 parent d5dc7a4 commit 9bbd9f6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions win-bin/extras/start-chromium-portable.bat
@@ -1,12 +1,18 @@
@echo off

SET CRFOLDER=Z:\Path\To\Chromium\MainFolder
SET CRFOLDER=%~dp0
IF "%1" == "" (
SET INDEX=%CRFOLDER%\index-portable.html
) ELSE (
SET INDEX=%1
)

START %CRFOLDER%\App\Chrome-bin\chrome.exe --user-data-dir="%CRFOLDER%\Data\profile" "%INDEX%"
:: You can also add
:: Extra switches bases on http://peter.sh/experiments/chromium-command-line-switches/
:: --disk-cache-dir="%TEMP%\ChromiumNightlyPortable"
:: --host-rules="MAP * baz, EXCLUDE www.google.com"
:: --ignore-certificate-errors
:: --ignore-gpu-blacklist
:: --incognito
:: --kiosk
:: --disable-backing-store-limit --disable-async-dns --disable-account-consistency --disable-affiliation-based-matching --disable-answers-in-suggest --disable-domain-reliability --disable-breakpad --disable-preconnect --disable-suggestions-service --disable-cloud-import --disable-logging --disable-default-apps --disable-component-cloud-policy --disable-sync --disable-translate --no-default-browser-check --ignore-autocomplete-off-autofill --disable-client-side-phishing-detection --safebrowsing-disable-auto-update

0 comments on commit 9bbd9f6

Please sign in to comment.