bing css

a

As of 2025-07-06. See the latest version.

// ==UserScript==
// @name         bing css
// @description  a
// @match        https://www.bing.com/*
// @version 0.0.1.20250706034455
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

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

* {
background-color: unset !important
}
  `;
  document.head.appendChild(style);
})();