Skip to content

Instantly share code, notes, and snippets.

@BtbN
Last active June 22, 2017 19:28
Show Gist options
  • Select an option

  • Save BtbN/98aeeb03b20bbd9fc68bac9310b4c6c5 to your computer and use it in GitHub Desktop.

Select an option

Save BtbN/98aeeb03b20bbd9fc68bac9310b4c6c5 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name ShutUpSearchEngines
// @namespace http://www.btbn.de
// @description Stops Chrome from adding random sites as search engines
// @include http://*/*
// @include https://*/*
// @version 1.0
// @downloadURL https://gist.githubusercontent.com/BtbN/98aeeb03b20bbd9fc68bac9310b4c6c5/raw
// @updateURL https://gist.githubusercontent.com/BtbN/98aeeb03b20bbd9fc68bac9310b4c6c5/raw
// ==/UserScript==
var elOpenSearch = document.querySelector('[type="application/opensearchdescription+xml"]');
if (elOpenSearch) elOpenSearch.remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment