a
目前為
// ==UserScript==
// @name mastodon css
// @description a
// @match https://mastodon.social/*
// @run-at document-end
// @version 0.0.1.20251108110500
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function () {
const css = `
.translatedText {
color: red !important;
}
`;
const style = document.createElement('style');
style.textContent = css;
document.head.appendChild(style);
})();