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.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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;}
	}
`);