Greasy Fork is available in English.

Google Cleaner

Makes Google search page more compact and removes some unnecessary information.

  1. // ==UserScript==
  2. // @name Google Cleaner
  3. // @namespace https://github.com/Ede123/userscripts
  4. // @version 0.9
  5. // @description Makes Google search page more compact and removes some unnecessary information.
  6. // @icon https://raw.githubusercontent.com/Ede123/userscripts/master/icons/Google.png
  7. // @author Eduard Braun <eduard.braun2@gmx.de>
  8. // @license GPL-3.0-or-later; https://www.gnu.org/licenses/gpl-3.0.txt
  9. // @include http://www.google.tld/search*
  10. // @include https://www.google.tld/search*
  11. // @grant GM_addStyle
  12. // @run-at document-start
  13. // ==/UserScript==
  14.  
  15. GM_addStyle(
  16. // hide some unnecessary stuff
  17. '.pdp-psy,' // cookie warning
  18. + '#taw,' // privacy notifications
  19. + '#appbar' // number of results
  20. + ' {display:none !important;}'
  21.  
  22. // reduce height of menu header
  23. + '#hdtbSum { height:35px !important; line-height:31px !important;}' // header
  24. + '.hdtb-msel { height:31px !important;}' // selected header item
  25. + '#hdtbMenus { top:unset !important;}' // search options menu
  26. + '#hdtb-more-mn { top:unset !important;}' // more menu
  27. );