a
// ==UserScript==
// @name qwen css
// @description a
// @match https://chat.qwen.ai/*
// @version 0.0.1.20251118072014
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function () {
const style = document.createElement('style');
style.id = 'qwenCssStyleId';
style.textContent = `
.user-message-text-content {
background-color: red !important;
color: black !important;
}
`;
document.head.appendChild(style);
})();