您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Each click on the input box will cycle through values picked by you (edit the code)
// ==UserScript== // @name Vault & Bookie Values // @description Each click on the input box will cycle through values picked by you (edit the code) // @author XeiDaMoKa [2373510] // @version 2.2 // @match https://www.torn.com/properties.php // @match https://www.torn.com/page.php?sid=bookie // @homepageURL https://www.xeidamoka.com/torn/scripts // @supportURL https://github.com/XeiDaMoKa/Torn-Scripts/issues // @namespace https://greasyfork.org/users/907370 // ==/UserScript== /* global $ */ (function() { 'use strict'; const input_values = { 'properties': ['100,000', '500,000', '1,051,000', '5,000,000', '10,000,000', '25,000,000', '50,000,000', '100,000,000'], 'bookie': ['10,000', '100,000', '1,000,000', '10,000,000', '100,000,000'] }; let i = { 'properties': 0, 'bookie': 0 }; const page_type = window.location.href.includes('properties') ? 'properties' : 'bookie'; $(document).on('click', 'input', function() { if ($(this).hasClass('input-money')) { $(this).val(input_values[page_type][i[page_type]]).trigger('input'); i[page_type] = (i[page_type] + 1) % input_values[page_type].length; } else if ($(this).hasClass('torn-btn')) { i[page_type] = 0; } }); })();