/* ==UserStyle== @name Better Google.com @version 1.3.0 @namespace github.com/Birdie0/userstyles @description Hide annoying "People also search for" box @author Birdie0 @homepageURL https://github.com/Birdie0/userstyles @supportURL https://github.com/Birdie0/userstyles/issues @updateURL https://raw.githubusercontent.com/Birdie0/userstyles/master/styles/google.com.user.css @license MIT @preprocessor stylus @var checkbox hide_people_also_search_for "Hide People also search for" 1 @var checkbox hide_related_searches "Hide Related searches" 0 ==/UserStyle== */ /* regex should match all supported domains: https://www.google.com/supported_domains */ @-moz-document regexp("^https?://www\\.google\\.[a-z]{2,3}(?:\\.[a-z]{2})?/search\\?.+") { if hide_people_also_search_for { .AUiS2 { display: none !important; } } if hide_related_searches { #bres { display: none !important; } } }