search-engine-stop

prevents sites to add their own line in the Chrome search engines list

  1. // ==UserScript==
  2. // @name search-engine-stop
  3. // @namespace searchenginestop
  4. // @version 0.1
  5. // @description prevents sites to add their own line in the Chrome search engines list
  6. // @author unknow
  7. // @include http://*
  8. // @include https://*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var elOpenSearch = document.querySelector('[type="application/opensearchdescription+xml"]');
  15. if (elOpenSearch) elOpenSearch.remove();
  16. })();