deepseek css

a

目前為 2025-06-19 提交的版本,檢視 最新版本

// ==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);
})();