Unity Forum $$anonymous$$ Replacer

replaces $$anonymous$$ back to 'hi'

  1. // ==UserScript==
  2. // @name Unity Forum $$anonymous$$ Replacer
  3. // @namespace none
  4. // @version 1.0
  5. // @description replaces $$anonymous$$ back to 'hi'
  6. // @author RustyPrime
  7. // @match https://answers.unity.com/questions/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=unity.com
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var body = document.querySelector("body");
  16. body.innerHTML = body.innerHTML.replaceAll('$$anonymous$$', 'hi');
  17. })();