Skip to content

Instantly share code, notes, and snippets.

@MRuy
Created August 12, 2017 15:35
Show Gist options
  • Save MRuy/6c60183c4d62469e587533d14e95a088 to your computer and use it in GitHub Desktop.
Save MRuy/6c60183c4d62469e587533d14e95a088 to your computer and use it in GitHub Desktop.
Chrome cleanup search engines

Cleanup unwanted search engines from chrome

Date: 2017-08-12 (Chrome 60)

  1. Open: chrome://settings/searchEngines
  2. Press F12 to open developer console
  3. Execute the following code:
settings.SearchEnginesBrowserProxyImpl.prototype.getSearchEnginesList()
    .then(function (val) { 
        val.others.forEach(function (engine) { 
            settings.SearchEnginesBrowserProxyImpl
                .prototype
                .removeSearchEngine(engine.modelIndex); 
        }); 
    });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment