description
当前为
// ==UserScript==
// @name TC Bazaar Max Buy v2
// @namespace namespace
// @version 0.1
// @description description
// @author tos
// @match *.torn.com/bazaar.php*
// @grant none
// ==/UserScript==
document.addEventListener('dblclick', (e) => {
const buy_input = e.target.className.includes('buyAmountInput') ? e.target : null
if (buy_input) buy_input.value = buy_input.max
})