Skip to content

Instantly share code, notes, and snippets.

@dreikanter
Last active March 21, 2017 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dreikanter/52b5302aa715433ef4f16fbbef3aabca to your computer and use it in GitHub Desktop.
Save dreikanter/52b5302aa715433ef4f16fbbef3aabca to your computer and use it in GitHub Desktop.
How to delete all "Other search engines" from Chrome

Motivation:

The list of "Other search engines" in Chrome settings could become bloated and unmanageable. Slow UI reaction makes it really hard to search through this list, or drop unnecessary items.

Solution:

  1. Go to chrome://settings/searchEngines
  2. Open dev tools (Cmd+Shift+I or Ctrl-Shift+I)
  3. Run this (execution may take a minute):
document.querySelectorAll('#other-search-engine-list .row-delete-button').forEach(function (e) { e.click(this) })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment