web-dev-qa-db-ja.com

Webプロジェクトを実行するときにVisual Studioでブラウザーのシークレットモードを使用する方法

enter image description here

プロジェクトを実行すると、Google Chrome normal modeを使用して起動しますが、Google Chromeシークレットモード?

19
Sazal Das

ビジュアルスタジオ2015/2017/2019を使用すると、非常に簡単です。 _--incognito_をコマンドラインスイッチとして追加し、ブラウザにGoogle Chrome-Incognito

Visual StudioでBrowse With ..オプションを使用して実行できること。このリンクを確認してください。ここで、必要な詳細を確認できます。 ブラウザとしてのChromeシークレットモード

For
Google Chrome:"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --incognito
Firefox:"C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -private-window
Internet Explorer/Microsoft Edge:_"C:\Program Files\Internet Explorer\iexplore.exe" -private_

31
Arif

Visual Studio 2017の場合

  1. 通常IIS Expressと表示されているボタンを選択します
  2. 下矢印をクリックします
  3. _Browse With..._を選択します

enter image description here

  1. _Add..._をクリックします

enter image description here

  1. Programの横にGoogle Chromeへのパスを書き込みます。 C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
  2. Argumentsの横に_--incognito_と書き込みます
  3. _Friendly name_の横にGoogle Chrome (Incognito)(またはニーズに合ったもの)を記述します。

enter image description here

  1. OKをクリックします
  2. 以前からわかりやすい名前(例:Google Chrome (Incognito))を選択し、_Set as Default_をクリックします

enter image description here

IIS Expressの横にある再生ボタンをクリックすると、Google Chromeがシークレットモードで起動します。

15
gimlichael

答えではありませんが、誰かがこの質問に遭遇してVisual Studio Codeソリューションを探している場合、これは私にとってうまくいきました:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Chrome: localhost",
            "url": "http://localhost:8080",
            "webRoot": "${workspaceRoot}/app"
        },
        {
            "type": "chrome",
            "request": "launch",
            "runtimeArgs": [
                "--incognito"
            ],
            "name": "Incog Chrome: localhost",
            "url": "http://localhost:8080",
            "webRoot": "${workspaceRoot}/app"
        }
    ]
}

ただし、これは現在、-private-window引数を指定したFirefoxデバッグ拡張機能を使用すると機能しません。それが役に立てば幸い。

8
that0th3rGuy