Indeed.com Compact-Mode

Provides a more productive browsing experience on indeed.com by enabling a full-width layout and compacting most UI elements on screens wider than 768 pixels. CSS Only, Grants GM_addStyle.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name        Indeed.com Compact-Mode
// @description Provides a more productive browsing experience on indeed.com by enabling a full-width layout and compacting most UI elements on screens wider than 768 pixels. CSS Only, Grants GM_addStyle.
// @iconURL     https://raw.githubusercontent.com/jgladwill/userscripts/main/indeed.com/compact-mode.icon32.png
// @icon64URL   https://raw.githubusercontent.com/jgladwill/userscripts/main/indeed.com/compact-mode.icon64.png
// @version     1.0.7
// @license     MIT; https://opensource.org/licenses/MIT
// @author      jgladwill
// @namespace   https://github.com/jgladwill/userscripts/indeed.com/
// @homepageURL https://github.com/jgladwill/userscripts/
// @supportURL  https://github.com/jgladwill/userscripts/issues/
// @match       *://*.indeed.com/*
// @grant       GM_addStyle
// @run-at      document-end
// ==/UserScript==

GM_addStyle(`
	* {outline: 0 !important;}
	@media (min-width: 769px) {
		#gnav-main-container [class*=gnav-header-] {
			margin: 0px !important;
			padding: 0px !important;
			min-height: initial !important;}
		#gnav-main-container [class*=gnav-header-].gnav-Logo {
			margin: 0 !important;}
		#gnav-main-container [class*=gnav-header-] a, #gnav-main-container [class*=gnav-header-] svg, #gnav-main-container [class*=gnav-header-] img, #gnav-main-container [class*=gnav-header-] button {
			margin: 5px !important;
			padding: 0px !important;
			height: 22px !important;
			width:  auto !important;
			min-height: initial !important;
			min-width: initial !important;}
		.icl-TextInput {padding: 5px !important;}
		.icl-Autocomplete-list li {padding: 0 5px !important;}
		.icl-TextInput-labelWrapper {margin: 0px 5px !important;}
		.icl-TextInput-labelWrapper label:after {content: ':' !important;}
		.yosegi-InlineWhatWhere {margin-bottom: 0px !important;}
		.yosegi-InlineWhatWhere-primaryButton {
			padding: 5px 10px !important;
			min-width: 0px !important;}
		.yosegi-FilterPill-pill {
			height: 22px !important;
			margin-right: 5px !important;
			padding: 15px !important;
			min-width: 0px !important;
			border-radius: 999px !important;}
		.yosegi-FilterPill-pillIcon svg {
			height: 9px !important;
			width: 9px !important;}
		.kebabMenu-button, .kebabMenu-button svg {
			height: 16px !important;
			width: 20px !important;}
		.attribute_snippet {
			max-width: 200px !important;
			overflow: hidden !important;
			white-space: nowrap !important;}
		.jobsearch-LeftPane .metadata span, .jobsearch-LeftPane .metadata a {
			font-size: .5rem !important;}
		.tapItem-gutter {margin-bottom: 0 !important;}
		.jobsearch-LeftPane, .jobsearch-RightPane {max-width: initial !important;}
		.jobsearch-LeftPane {width: 40vw !important;}
		.jobsearch-RightPane {width: 60vw !important;}
		.jobsearch-SerpMainContent {padding: 10px 15px !important;}
		.jobsearch-SerpMainContent, .jobsearch-RichSearchBody {
			width: 100% !important;
			justify-content: space-between !important;}
		.jobsearch-JobCountAndSortPane, .jobsearch-JobCountAndSortPane, .jobsearch-JobCountAndSortPane-jobCountInfo {margin: 0 !important; padding: 0 !important;}
		.jobsearch-SerpTitle, .visually-hidden, .fe_logo, .jobCardShelfContainer, .microContentQuestion, .smileyRatingForm, .msdg, #mosaic-aboveJobCards, .job_seen_beacon [class*=css-ot], .job_seen_beacon [class*=css-] div {display: none !important;}
		.mosaic-provider-jobcards .tapItem.result.resultWithShelf .slider_container .jobCard_mainContent {padding: 5px 10px !important;}
	}
`);