How to start Chrome without plugins?

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/)!)

6

3 Answers

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.
4

Create a .bat file

taskkill /F /IM chrome.exe
taskkill /F /IM iexplore.exe
taskkill /F /IM googleupdate.exe
taskkill /F /IM outwit-hub.exe
start chrome --disable-extensions

You could use the command line option --disable-plugins to disable plug-ins.

Other possible solutions to the apparent problem are rebooting your system, clearing your browser cache, running an anti virus system check, attempting an update, attempting an installation repair (if Chrome has that feature), and doing a full uninstall and reinstall.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like