Google Clean Search

Clean up the current look of google search

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @run-at      document-start
// @namespace   https://openuserjs.org/users/MilionMax
// @name        Google Clean Search
// @description Clean up the current look of google search
// @version     0.0.12
// @include     http://www.google.*/search*
// @include     https://www.google.*/search*
// @include     https://www.google.*/*
// @include     https://encrypted.google.*/search*
// @include     https://encrypted.google.*/*
// @license     MIT
// @resource    customCSS https://raw.githubusercontent.com/maximilianotaverna/CleanSearch-CSS/master/googlesearch_rule.css
// @grant       GM_getResourceText
// @grant       GM_addStyle
// ==/UserScript==

var cssTxt  = GM_getResourceText("customCSS");
GM_addStyle (cssTxt);

/* if you have google's  Product Sans font installed uncomment below */
// GM_addStyle('html { --font-main: "Product Sans"!important; }');