deepseek css

a

// ==UserScript==
// @name         deepseek css
// @description  a
// @match        https://chat.deepseek.com/*
// @version 0.0.1.20250619220306
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
  const style = document.createElement('style');
  style.textContent = `

* {
}
  `;
  document.head.appendChild(style);
})();