bat文件开始打开chrome chrome://downloads/ [英] bat file start open chrome chrome://downloads/

查看:391
本文介绍了bat文件开始打开chrome chrome://downloads/的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试向下载管理器chrome标志打开chrome实例.但这一点都不喜欢我.URL可以正常工作,因此我知道chrome标志不是url,那么我们将如何打开chrome的这一部分 chrome://downloads/

I am trying to open an instance of chrome to the download manager chrome flag. But it's not liking me whatsoever. URL's will work perfectly fine so I know that the chrome flag is not a url so how would we open this part of chrome chrome://downloads/

start /D "C:\Program Files (x86)\Google\Chrome\Application" chrome.exe --new-window "chrome://downloads/"

推荐答案

不可能.

查看

Look at StartupBrowserCreator::GetURLsFromCommandLine in the Chromium source code:

      if (policy->IsWebSafeScheme(url.scheme()) ||
          url.SchemeIs(url::kFileScheme) ||
#if defined(OS_CHROMEOS)
          // In ChromeOS, allow any settings page to be specified on the command
          // line. See ExistingUserController::OnLoginSuccess.
          (url.spec().find(chrome::kChromeUISettingsURL) == 0) ||
#else
          ((url.spec().find(std::string(chrome::kChromeUISettingsURL) +
                            chrome::kResetProfileSettingsSubPage) == 0)) ||
#endif
          (url.spec().compare(url::kAboutBlankURL) == 0)) {
        urls.push_back(url);
      }

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆