Anonymizer for Scratch

Makes all users on scratch anonymous.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Anonymizer for Scratch
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Makes all users on scratch anonymous.
// @author       CodingGamerHD
// @match        https://scratch.mit.edu/discuss/*
// @match        https://scratch.mit.edu/projects/*
// @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>');
    $("div.name").replaceWith('<b>Anonymous</b>');
    $("img.avatar").replaceWith('<img class="avatar" src="//cdn2.scratch.mit.edu/get_image/user/default_60x60.png" width="45" height="45">');
})();