Torn Transform Text to Numeric Input

Transforms various text inputs to number inputs (Only useful on mobile)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Torn Transform Text to Numeric Input
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Transforms various text inputs to number inputs (Only useful on mobile)
// @author       TheProgrammer
// @match        https://www.torn.com/page.php?sid=stocks*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    function transformToNumericInput(element) {
        element.type = 'number';
        // Optional: Set additional attributes if needed
        // element.pattern = '[0-9]*';
        // element.step = '0.01';
    }

    function processNewInputs(mutationsList, observer) {
        for(const mutation of mutationsList) {
            if (mutation.type === 'childList') {
                mutation.addedNodes.forEach(node => {
                    if (node.nodeType === Node.ELEMENT_NODE) {
                        if (node.matches('input.input-money:not([type="hidden"])')) {
                            transformToNumericInput(node);
                        } else if (node.hasChildNodes()) {
                            node.querySelectorAll('input.input-money:not([type="hidden"])').forEach(transformToNumericInput);
                        }
                    }
                });
            }
        }
    }

    function observeMutations() {
        const observer = new MutationObserver(processNewInputs);
        observer.observe(document.body, {
            childList: true,
            subtree: true
        });
    }

    // Run the script on page load and observe for mutations
    observeMutations();

})();