this this many

thiiiis many

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         this this many
// @namespace    http://tampermonkey.net/
// @version      2025-08-24
// @description  thiiiis many
// @license      WTFPL
// @author       winfy
// @match        https://*/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    const chance = 0.3;
    const renames = [
        [/many/g, mkIs("th@is many")],
        [/Many/g, mkIs("Th@is Many")],
        [/MANY/g, mkIs("TH@iS MANY")]
    ];

    function mkIs(str) {
        return match => str.replace(/@(.)/g, (_, c) => Math.random() < chance ? new Array(1 + Math.random() * 10 | 0).fill(c).join("") : c);
    }

    function subst(text) {
        for (const [p, sub] of renames) {
            text = text.replace(p, match => Math.random() < chance ? sub instanceof Function ? sub.apply(this, arguments) : sub : match);
        }
        return text;
    }

    const walker = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT);
    let node;

    while ((node = walker.nextNode())) {
        node.data = subst(node.data);
    }
})();