Greasy Fork is available in English.

Google search history compact

compact - remove massive padding mid 2016

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        Google search history compact
// @namespace   english
// @description compact - remove massive padding mid 2016
// @include     http*://*history.google.com/history*
// @version     1.7
// @run-at document-end
// @grant       GM_addStyle
// ==/UserScript==

// Main - Collapse the Greasy Fork Header


var style = document.createElement('style');
style.type = 'text/css';

style.innerHTML =  '             /*\n*//*\n*/.history-search-result-message {/*\n*/    color: #777 !important ; /*\n*/    margin-left: 32px !important ; /*\n*/    margin-top: 10px !important ; /*\n*/}/*\n*//*\n*/.history-card-date-holder {/*\n*/    margin: 0 24px !important ; /*\n*/    margin-top: 5px !important ; /*\n*/    padding: 0 !important ; /*\n*/}/*\n*//*\n*/.history-date-cluster {/*\n*/    padding-top: 5px !important ; /*\n*/}/*\n*/.layout-padding, .layout-padding-gt-sm, .layout-padding-gt-sm>*, .layout-padding-md, .layout-padding-md>*, .layout-padding>*, .layout-padding>.flex, .layout-padding>.flex-gt-sm, .layout-padding>.flex-md {/*\n*/    padding: 5px !important ; /*\n*/}/*\n*/.history-cluster {/*\n*/    padding: 5px !important ; /*\n*/    padding-right: 16px !important ; /*\n*/}/*\n*//*\n*//*\n*//*\n*/md-card-content .history-cluster-holder:first-child .history-cluster {/*\n*/    padding-top: 5px !important ; /*\n*/}/*\n*//*\n*/md-checkbox { /*\n*/    margin-bottom: 0 !important ;  /*\n*/}/*\n*//*\n*/md-card-content .history-cluster-holder:last-child .history-cluster {/*\n*/    padding-bottom: 5px !important ; /*\n*/}/*\n*/               ';