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:

http://www.youtube.com/watch?v=m6toswpewo8


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -