Google Search in columns

This is a CSS that transform Google Search into multiple columns.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name          Google Search in columns
// @namespace     http://userstyles.org
// @description	  This is a CSS that transform Google Search into multiple columns.
// @author        Crend King & Roxz
// @homepage      https://userstyles.org/styles/123849
// @include	http*://www.google.*.*/webhp?*
// @include	http*://www.google.*.*/search?*
// @include	http*://www.google.*.*/ig?*
// @include	http*://www.google.*.*/
// @include	http*://www.google.*.*/#*
// @include	http*://www.google.*/webhp?*
// @include	http*://www.google.*/search?*
// @include	http*://www.google.*/ig?*
// @include	http*://www.google.*/
// @include	http*://www.google.*/#*
// @include	https://encrypted.google.*/webhp?*
// @include	https://encrypted.google.*/search?*
// @include	https://encrypted.google.*/ig?*
// @include	https://encrypted.google.*/
// @include	https://encrypted.google.*/#*
// @run-at        document-start
// @version       1.0
// ==/UserScript==
(function() {var css = [
	"/* columns  */",
	"",
	".big .mw,",
	".s {",
	"    max-width: unset !important;",
	"}",
	"",
	".col {   ",
	"    width: 100% !important;",
	"}",
	"",
	"#cnt .mw #center_col,",
	"#cnt .mw #foot {",
	"    width: 100% !important;",
	"}",
	"",
	"#center_col {",
	"    margin: auto !important;",
	"    padding: inherit !important;",
	"}",
	"",
	"/* entries */",
	"",
	".g {",
	"    padding: 0.667em !important;",
	"}",
	"",
	".srg {",
	"    display: flex !important;",
	"    flex-wrap: wrap !important;",
	"}",
    "",
	".mw {",
	"    width: 990em !important;",
    "    max-width: 130em !important;",
	"}",
	"",
	".srg > .g {",
	"    width: calc(100% / 3 - 2.333em) !important;",
	"    margin-left: 0.5em !important;",
	"    margin-right: 0.5em !important;",
	"    overflow: hidden !important;",
	"}",
	"",
	".rgsep {",
	"    display: none !important;",
	"}",
	"",
	"/* info box */",
	"",
	".vk_c,",
	".kp-blk {",
	"    margin: auto !important;",
	"}"
].join("\n");
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var node = document.createElement("style");
	node.type = "text/css";
	node.appendChild(document.createTextNode(css));
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		heads[0].appendChild(node);
	} else {
		// no head yet, stick it whereever
		document.documentElement.appendChild(node);
	}
}
})();