Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open chrome app with specific URL through chrome_proxy.exe?

I have a Chrome app that I created with "Create Application Shortcut". What I need is to open that app with specific url on the same domain.

Example:

chrome_proxy.exe --profile-directory=Default --app-id=xxxxxxxx "https://www.google.com"

Is that possible or any command that achive the same result?

like image 220
adrian Avatar asked Apr 25 '19 15:04

adrian


1 Answers

I'm guessing you installed the Chrome app so that the website launches in a standalone window. If this is the case, you can achieve something similar by using the --app command line switch instead.

Eg: chrome_proxy.exe --profile-directory=Default --app="https://www.google.com"

This doesn't strictly open the URL in the existing app, but it does open that specific URL in a standalone window.

like image 192
Garrulinae Avatar answered Sep 17 '22 22:09

Garrulinae