a
当前为
// ==UserScript==
// @name deepseek css
// @description a
// @match https://chat.deepseek.com/*
// @version 0.0.1.20250613110805
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function() {
const style = document.createElement('style');
style.textContent = `
* {
padding: unset !important;
margin: unset !important;
border: unset !important;
}
`;
document.head.appendChild(style);
})();