Chrome Safe Mode – How to Start Chrome Without Plugins?

browser-addonsgoogle-chromepluginssafe-mode

I have created a separate question Google Chrome completely unresponsive on the problem that may be fixed in this way.

The browser cannot open any page, not even the settings, plugins and addons pages.

Using the incognito window has the same problem, maybe because some plugins are still used (or loaded).

I think addons are userprofile-specific, as indicated in the solution to the question How to open Google Chrome with extensions disabled / turned off? indicated as the one to which this may be a duplicate.

Therefore, I need to try to start with no plugins (and this one is no duplicate).

Is it possible to start Chrome in safe mode or something so that no addons or plugins are used?

(I mean start the browser already with all those disabled, because, as presented in the other question linked above, I cannot access settings nor plugins because NO window works, NOT EVEN Settings (chrome://settings/), About Google Chrome (chrome://chrome/) or Downloads (chrome://downloads/)!)

Best Answer

Source List of Chromium Command Line Switches

--disable-extensions Disable extensions.

--disable-plugins Prevent plugins from running

You might also find the following useful:

--debug-plugin-loading Dumps extra logging about plugin loading to the log file

How to add these options to a Chrome shortcut

enter image description here

  • Right click on your Chrome shortcut
  • Select Properties.
  • Add to the end of the Target field --disable-extensions --disable-plugins

It will look like:

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" /high-dpi-support=1 /force-device-scale-factor=1 --disable-extensions --disable-plugins

  • Click on OK
  • Start Chrome.
Related Question