Bing Minimalist Search Layout

Strips out padding, margins, logos and clipping rules on Bing search results for a clean, compact, full‑text view.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name        Bing Minimalist Search Layout
// @description Strips out padding, margins, logos and clipping rules on Bing search results for a clean, compact, full‑text view.
// @match       https://www.bing.com/search?*
// @exclude     https://www.bing.com/news/search?*
// @run-at      document-start
// @version 0.0.1.20250730102450
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {
  const css = `
    /* Remove top padding on first result */
    #b_results > li:first-child,
    #b_results > li:first-child.b_bfb_mainline.b_ans:empty + li:not(.b_ans.b_topborder) {
      padding-top: 0 !important;
    }

    /* Remove padding on algorithmic results */
    #b_results > .b_algo {
      padding: 0 !important;
    }

    /* Remove padding on all other result items, ads, and age‑verification notices */
    #b_results > li,
    #b_results > [data-tag="ageverification.AVSignIn"],
    #b_results > [data-tag="ageverification.AVVerify"],
    #b_results > .b_ad {
      padding: 0 !important;
    }

    /* Remove padding from the content container */
    #b_content {
      padding: 0 !important;
    }

    /*  Add max-width to every result list item */
    #b_results > li {
      max-width: 290px !important;
    }

    #b_results .b_algo .b_tpcn .b_attribution {
      height: 0% !important;
    }

    /* Overwrite the webkit line clamp to show full text */
    #b_results .b_lineclamp2 {
      -webkit-line-clamp: unset !important;
      /* Removes the maximum-line count restriction */
    }

/* Hide the Bing logo area */
.b_logoArea {
  display: none !important;
}

/* Remove the max-width constraint */
.b_factrow.b_twofr ul:first-child {
  max-width: unset !important;
}

/* Allow normal wrapping */
.b_factrow.b_twofr ul li div {
  white-space: normal !important;
}

/* Remove padding on header */
#b_header {
  padding: 0 !important;
}

/* Remove margin on main content wrapper */
#b_tween.b_hidetoggletween ~ #b_mcw {
  margin: 0 !important;
}
    `;
  const style = document.createElement('style');
  style.textContent = css;
  document.head.appendChild(style);
})();