Greasy Fork is available in English.

answers.unity $$anonymous$$ Fix

fixes persistent text issue of '$$anonymous$$' replacing 'M' everywhere

  1. // ==UserScript==
  2. // @name answers.unity $$anonymous$$ Fix
  3. // @namespace https://greasyfork.org/en/users/10118-drhouse
  4. // @version 1.0
  5. // @description fixes persistent text issue of '$$anonymous$$' replacing 'M' everywhere
  6. // @include https://answers.unity.com/*
  7. // @require http://code.jquery.com/jquery-3.4.1.min.js
  8. // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js
  9. // @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js
  10. // @require https://greasyfork.org/scripts/447533-findandreplacedomtext-v-0-4-6/code/findAndReplaceDOMText%20v%20046.js?version=1074625
  11. // @author drhouse
  12. // @license CC-BY-NC-SA-4.0
  13. // @icon https://www.google.com/s2/favicons?sz=64&domain=unity.com
  14. // ==/UserScript==
  15. this.$ = this.jQuery = jQuery.noConflict(true);
  16. (function($){
  17.  
  18. findAndReplaceDOMText(document.body, {
  19. find: '$$anonymous$$',
  20. replace: 'M'
  21. }
  22. );
  23.  
  24. })(jQuery);