bing css

a

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

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

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         bing css
// @description  a
// @match        https://www.bing.com/*
// @version 0.0.1.20250730113421
// @namespace https://greatest.deepsurf.us/users/1435046
// ==/UserScript==

(function() {
  const style = document.createElement('style');
  style.textContent = `
:root {
color-scheme: light dark !important;
}

* {
background-color: revert !important;
color: revert !important;
min-width: revert !important;
}

div.b_genserp_citation_hover_md, li.b_ans:has(> div > ul > li > a > div.b_suggestionIcon.sug_sprite), div#inline_rs, footer, aside {
    display: none !important;
}

ol#b_topw {
    width: 290px !important;
}

ol#b_results {
  width: revert !important;
}

input#sb_form_q {
width: revert !important;
}

header#b_header * {
    margin-left: revert !important;
    margin-right: revert !important;
    /* width: revert !important; */
}

#id_h {
    position: revert !important;
    float: revert !important;
    text-align: revert !important;
    margin: revert !important;
}

nav.b_scopebar > ul {
    height: revert !important;
}

.ca_top_sec {
  width: revert !important;
}
  `;
  document.head.appendChild(style);
})();