通过批处理文件在弹出窗口中启动Google Chrome上的网站

Jak*_*kub 2 google-chrome batch-file popup

我试图在Google Chrome中创建一个简单的批处理文件来打开groovehark播放列表,但我不满意播放列表在新标签页中打开 - 而不是弹出窗口.

我尝试了很多方法,但是无法找到是否有可能通过批处理文件在Chrome中打开新的弹出窗口.

我也考虑在.exe中创建这个类似Visual Basic的东西,但我是初学者,所以我不知道该怎么做.

Wil*_*ord 6

grooveshark.cmd

@echo off
start "Chrome" chrome --new-window www.grooveshark.com
Run Code Online (Sandbox Code Playgroud)

http://peter.sh/experiments/chromium-command-line-switches/