Greasy Fork is available in English.
高亮彩云小译翻译字体的颜色。
// ==UserScript==
// @name 彩云小译翻译字体高亮
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 高亮彩云小译翻译字体的颜色。
// @author eryisan
// @match *://*/*
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const content = document.querySelector("html");
content.addEventListener("DOMSubtreeModified", function () {
const el = document.querySelectorAll("[data-vfjtx1rfwfrfvefsr0vu]");
el.forEach(n => {
n.style.color = "red";
n.style.fontWeight = "450";
});
})
})();