Greasy Fork is available in English.
Makes all users on the scratch fourms anonymous
当前为
// ==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/*
// ==/UserScript==
(function() {
'use strict';
$(".postleft").replaceWith('<div class="postleft"><dl><dt><p class="black username">Anonymous</p></dt><dd class="postavatar"><img src="//cdn2.scratch.mit.edu/get_image/user/default_90x90.png" width="90" height="90"></dd>Anonymous<br>??? posts<br><p style="color:#cccccc">Anonymized by CodingGamerHD\'s Anonymizer for Scratch Fourms.</p></dl></div>');
})();