$$anonymous$$

Get rid of $$anonymous$$ on Unity Answers

  1. // ==UserScript==
  2. // @name $$anonymous$$
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Get rid of $$anonymous$$ on Unity Answers
  6. // @author ilexite
  7. // @match https://answers.unity.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=unity.com
  9. // @grant none
  10. // @license GPL-3.0
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. document.body.innerHTML = document.body.innerHTML.replace(/\$\$anonymous\$\$/g, "hi");
  15. })();