Ebay Money Converter

converts the monies

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Ebay Money Converter
// @namespace   kunaifirestuff
// @description converts the monies
// @include     *ebay.*
// @version     1
// @grant       none
// ==/UserScript==

var elements = document.getElementsByTagName("span")

prefix = "£"
rate = 439.702484 // weird money * rate = my money
mySuffix = " HUF"

for(var i = 0; i < elements.length; i++){
  if(elements[i].textContent.contains(prefix)){
    r = new RegExp("(.*)(" + prefix + ")([0-9\.,]*)(.*)").exec(elements[i].textContent)
    elements[i].textContent = r[1] + konvert(r[3]) + r[4]
  }
}

function konvert(money){
  return Math.ceil(money * rate).toString().replace(/\B(?=(\d{3})+(?!\d))/g, " ") + mySuffix
}