Skip to content

Better Google.com by birdie0

Mirrored from https://raw.githubusercontent.com/Birdie0/userstyles/master/styles/google.com.user.css

Screenshot of Better Google.com

Details

Authorbirdie0

LicenseMIT

Categorygoogle.com

Created

Updated

Size848 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Hide annoying "People also search for" box

Notes

Userstyle doesn't have notes.

Source code

/* ==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
@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;
		}
	}
}

Reviews

No reviews yet.