VoxCommando

General Discussion => General Discussion => Topic started by: Spenner11 on May 20, 2015, 07:14:34 PM

Title: Rawparam for Incognito Chrome?
Post by: Spenner11 on May 20, 2015, 07:14:34 PM
Hey all, does anyone know the rawparam line for opening an incognito tab with chrome?
Thanks in advance
Jamie  ;D
Title: Re: Rawparam for Incognito Chrome?
Post by: Kalle on May 21, 2015, 03:28:49 AM

Yes  ;)

When you use the Launch.RawParameter action, put the path to your chrome browser in the first field and   -incognito   in the parameter field, that is all.
Title: Re: Rawparam for Incognito Chrome?
Post by: nime5ter on May 21, 2015, 08:07:47 AM
In case it's not clear, you can put the specific URL you want to navigate to in the "command line parameters" field, after -incognito

i.e.

Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.1.4.6-->
<command id="766" name="Chrome incognito" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
  <action>
    <cmdType>Launch.RawParam</cmdType>
    <params>
      <param>{Path.PFx86}\Google\Chrome\Application\chrome.exe</param>
      <param>-incognito www.youtube.com/jitterjames</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <phrase>Chrome incognito</phrase>
</command>

http://www.tech-recipes.com/rx/3479/google-chrome-use-a-command-line-switch-to-open-in-incognito-mode/