I am very new to programming, so what I trying do is open chrome with extension. After doing some search i found this link : https://seleniumjava.com/2016/05/22/start-the-chrome-browser-with-extensions/amp/
However it talks about Java which I have no clue... So I want to incorporate the same method with VBA ... Thanks in advance ..
The following is from when I set up two profiles: one with javascript enabled and the other without. If you have already got the extension installed in the profile it should load when you pass the correct path. In my experience I found it more reliable to create the profile and launch Chrome via Selenium and then add the extension. For example, with the script below I opened Chrome app store for one of my profiles and manually added Usersnap extension. Now, when I launch this profile again it is present.
Note: I set up profiles by launching selenium chrome and entering
chrome://version/
then copying theProfile Path
to re-use.These two examples are direct from the author himself and available on GitHub
The above shows the 2 ways to load with extension (by
Load a Chrome Extension
by providing a path argument, creating aCustom Chrome Profile
and passing the path to that. More info here.Walk through of setting a temp profile (conversation between @qharr & @YasserKhalil)