Remove Bing Related Searches

Remove related searches from the sidebar of Bing search pages

  1. // ==UserScript==
  2. // @name Remove Bing Related Searches
  3. // @namespace https://github.com/AbdurazaaqMohammed
  4. // @homepage https://github.com/AbdurazaaqMohammed/userscripts
  5. // @version 1.1.1
  6. // @description Remove related searches from the sidebar of Bing search pages
  7. // @author Abdurazaaq Mohammed
  8. // @match https://*.bing.com/*
  9. // @run-at document-start
  10. // @grant none
  11. // @license The Unlicense
  12. // @supportURL https://github.com/AbdurazaaqMohammed/userscripts/issues
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. (document.head || document.documentElement).appendChild(document.createElement('style')).textContent = '.richrswrapper { display: none; }';
  18. })();