Now, we need to handle it using following -
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.addArguments("chrome.switches", "--disable-extensions --disable-extensions-file-access-check --disable-extensions-http-throttling");
Apart from --disable-extensions
, we also need to add --disable-extensions-file-access-check
(and/or) --disable-extensions-http-throttling
chrome switches.