Hello,
I am using Komodo Edit 8 to develop a Chrome extension. Frequently I want to test my extension running Chrome in an isolated environment (not the default profile, etc. that is used whenever I start Chrome from my Desktop).
Up to now, I have been launching Chrome using a batch file as follows:
SET CHROME_DIR="C:\Program Files (x86)\Google\Chrome\Application"
SET CHROME_EXE=chrome.exe
%CHROME_DIR% %CHROME_EXE% --user-data-dir=D:\Development\Work\Web\Google\Chrome\.chrome\Local
As you can see the batch file just launches chrome using a “user-data-dir” that is isolated from my standard chrome environment and uses a specific folder to store user data.
D:\Development\Work\Web\Google\Chrome\.chrome\Local
I have recently begun using Komodo Edit 8 to develop and test my Chrome extension and I would like to continue starting/testing my Extension using Komodo Edit’s Web Browser Preview, however, I don’t see a way to create/customize my own launch configuration.
Straight out of the box it seems Komodo Edit 8 just uses the system-wide “default” launch paths/environment(s) for all the common browsers.
which ends up being roughly:
C:\User\AppData\Local\Chrome
Is there a way I can create my own custom Chrome launch configuration using the parameters above use it when launching/testing my extension or are my only options those that are provided by default?
Thank you,
Jan