您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Show miles instead of meters on IB
当前为
// ==UserScript== // @name IBmiles // @namespace none // @version 2018.12.11.1737 // @description Show miles instead of meters on IB // @author technical13 // @supportURL https://discord.me/TheShoeStore // @match https://itembrowser.com/finderbee.php* // @grant none // ==/UserScript== ( function() { 'use strict'; $( 'dd.cost' ).each( ( n, placeDist ) => { var dblMeters = placeDist.innerText.match( /.*\((\d*)M\)/i )[ 1 ]; var dblMiles = ( Math.round( dblMeters * 0.000621371 * 100 ) / 100 ); placeDist.innerText = placeDist.innerText.replace( dblMeters + 'M', dblMiles + 'mi' ); } ); } )();