Indeed Compact-Mode

Provides a more productive browsing experience by enabling full-width layout and compacting most UI elements. CSS Only, Grants GM_addStyle.

当前为 2022-12-21 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        Indeed Compact-Mode
// @description Provides a more productive browsing experience by enabling full-width layout and compacting most UI elements. CSS Only, Grants GM_addStyle.
// @version     1.0
// @author      jgladwill
// @license     MIT
//
// @created     12/21/2022
// @updated     12/21/2022
//
// @namespace   https://greasyfork.org/en/users/1000822-jon-gladwill
// @match       http*://*.indeed.*/*
// @grant       GM_addStyle
// ==/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;}
}
`);