Skip to content Skip to sidebar Skip to footer

How To Open Chrome In Incognito Tab

I have a scenario open a web link in incognito tab in chrome browser. I am using adb command to open chrome and navigate to specific URL i.e adb shell am start -n com.android.chrom

Solution 1:

I could not find any way using adb commands. But using ChromeOptions it is possible if we add "--incognito" argument.

Solution 2:

Try this! it will work.

adb shell am start -n com.android.chrome/org.chromium.chrome.browser.incognito.IncognitoTabLauncher

Solution 3:

You can launch chrome in incognito mode with the -incognito flag. I am not sure if this will work through ADB, however.

Post a Comment for "How To Open Chrome In Incognito Tab"