您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
description
// ==UserScript== // @name TC Inventory Abroad // @namespace namespace // @version 0.1 // @description description // @author tos // @match *.torn.com/index.php* // @grant none // ==/UserScript== const api_key = 'APIKEY' const travel_market_wrap = document.querySelector('.travel-agency-market') if (travel_market_wrap) { document.querySelector('.items-list-title .circulation-b').innerText = 'Inventory' show_inventory() } async function show_inventory() { const inventory = await fetch(`https://api.torn.com/user/?selections=inventory&key=${api_key}`).then(r => r.json()) document.querySelectorAll('.users-list li').forEach( (item) => { try { const item_id = item.querySelector('img').src.split('items/')[1].split('/')[0] const circ = item.querySelector('.circulation').childNodes[2] circ.textContent = '0' inventory.inventory.forEach((i) => { if (item_id == i.ID) circ.textContent = i.quantity }) } catch(err) { console.warn('TC Inventory Abroad ERROR:', err) } }) }