=============
Is there a way to open two tabs in the –app mode?
For example:
chrome.exe -–new-window –app=google.com app=yahoo.com –new-tab
==============
I am trying to open a webpage in kiosk mode and at the same time, I am loading a virtual keyboard unpacked extension to Chrome. The challenge is that when the webpage opens in kiosk mode, the same time the extension settings page also opens up on top of it. I have also tried closing that extension setting tab using sendkey (Ctrl+4 and Ctrl+W) but it closes the complete chrome instance. Here is the vb script that I am using.
Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.run (“chrome.exe –kiosk http://gmail.com –load-extension=C:\LAUNCHER\keyboard”)
WshShell.AppActivate (“Chrome.exe”)
WScript.Sleep 3000
‘WshShell.sendkeys (“^W”)
|