Greasy Fork is available in English.
replaces $$anonymous$$ back to 'hi'
// ==UserScript==
// @name Unity Forum $$anonymous$$ Replacer
// @namespace none
// @version 1.0
// @description replaces $$anonymous$$ back to 'hi'
// @author RustyPrime
// @match https://answers.unity.com/questions/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=unity.com
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
var body = document.querySelector("body");
body.innerHTML = body.innerHTML.replaceAll('$$anonymous$$', 'hi');
})();