Last active
June 22, 2017 19:28
-
-
Save BtbN/98aeeb03b20bbd9fc68bac9310b4c6c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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