Google Chrome Shortcut that Opens Many Web Pages in Many Tabs -
i'm trying find way make shortcut google chrome open multiple specific webpages in multiple tabs. right using google chrome desktop shortcut , command line switches accomplish this, falling short. have line of code in target textbox (right click shortcut > properties > target textbox) right now:
c:\users\computername\appdata\local\google\chrome\application\chrome.exe --new-window --incognito "http://url1" "http://url2"
this want. google chrome opens in new incognito window urls in separate tabs. except, there 1 big problem. target textbox allows limited amount of characters. need open multiple urls in multiple tabs, 8 or more. urls not fit in target textbox.
on top of appears --disable-images
switch not work windows 7. disable images along java , flash improve performance when opening many tabs.
so, how can shortcut opens google chrome in new incognito window multiple tabs going multiple different websites (urls)?
preferably images disabled , possibly java , flash disabled. (keep in mind shortcut .bat file or of like.)
write batch file , make say:
@echo off
start chrome -incognito "url1" start chrome -incognito "url2"
the exact steps shown in video:
Comments
Post a Comment