334cratch

ChatGPTで生成しました。Scratch上の数字を334にします。

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         334cratch
// @namespace    http://tampermonkey.net/
// @version      1.5
// @description  ChatGPTで生成しました。Scratch上の数字を334にします。
// @author       334nfz.
// @match        *://scratch.mit.edu/*
// @grant        none
// @run-at       document-end
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const numberRegex = /[\d0-9]+|一|二|三|四|五|六|七|八|九|十|百|千|万|億|兆|京|one|two|three|four|five|six|seven|eight|nine|ten|eleven|twelve|thirteen|fourteen|fifteen|sixteen|seventeen|eighteen|nineteen|twenty|thirty|forty|fifty|sixty|seventy|eighty|ninety|hundred|thousand|million|billion|trillion|quadrillion|one|two|three|four|five|six|seven|eight|nine|ten|eleven|twelve|thirteen|fourteen|fifteen|sixteen|seventeen|eighteen|nineteen|twenty|thirty|forty|fifty|sixty|seventy|eighty|ninety|hundred|thousand|million|billion|trillion|quadrillion/gi;

    function replaceNumbers(node) {
        if (node.nodeType === 3) { // テキストノードのみ対象
            node.nodeValue = node.nodeValue.replace(numberRegex, '334');
        } else if (node.nodeType === 1 && node.childNodes) {
            node.childNodes.forEach(replaceNumbers);
        }
    }

    function observeChanges() {
        const observer = new MutationObserver(mutations => {
            mutations.forEach(mutation => {
                mutation.addedNodes.forEach(replaceNumbers);
            });
        });

        observer.observe(document.body, { childList: true, subtree: true });
    }

    function interceptUserInput() {
        document.addEventListener('input', event => {
            if (event.target && (event.target.tagName === 'INPUT' || event.target.tagName === 'TEXTAREA')) {
                let inputText = event.target.value;
                let matches = inputText.match(numberRegex);
                if (matches) {
                    let replacement = '334'.repeat(matches.length);
                    event.target.value = inputText.replace(numberRegex, replacement);
                }
            }
        });
    }

    replaceNumbers(document.body);
    observeChanges();
    interceptUserInput();
})();