22

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

3 Answers3

26

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.
DavidPostill
  • 156,873
  • 6
    This didn't work for me on Chrome 68, Windows 10. – Bram Vanroy Sep 25 '18 at 07:26
  • 2
    I am looking to do this on Ubuntu if anyone knows how. – MrCholo Nov 29 '18 at 02:27
  • @MrCholo (Sorry for imprecise instructions because I have Kubuntu not Ubuntu) Right click your Chromium (or Chrome) somewhere (like Applications menu) and choose edit application or properties or open with gedit. There should be a line like chromium-browser which you would change to chromium-browser --disable-extensions --disable-plugins. – Carolus Apr 01 '19 at 08:52
  • 1
    That doesn't work. I call ./chrome --disable-extensions from bash and it launches with extensions enabled. – Shimmy Weitzhandler May 20 '20 at 21:34
3

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
Jason Aller
  • 2,340
0

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.

Steve
  • 667