// ==UserScript== // @name Anonymizer for Scratch Fourms // @namespace http://tampermonkey.net/ // @version 1.0 // @description Makes all users on the scratch fourms anonymous // @author CodingGamerHD // @match https://scratch.mit.edu/discuss/* // @grant none // @include https://scratch.mit.edu/discuss/* // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(".postleft").replaceWith('

Anonymous

Anonymous
??? posts

Anonymized by CodingGamerHD\'s Anonymizer for Scratch Fourms.

'); })();