0
0
mirror of https://github.com/Maks1mS/userscripts.git synced 2024-12-23 16:22:59 +03:00

Create SteamPriceConverter.user.js

This commit is contained in:
Maxim Slipenko 2023-09-07 20:21:44 +03:00 committed by GitHub
parent 290120ba09
commit 255748fdff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,83 @@
// ==UserScript==
// @name Steam Price Converter
// @namespace https://github.com/Maks1mS/userscripts
// @version 0.1
// @description try to take over the world!
// @author Maxim Slipenko
// @match https://store.steampowered.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=steampowered.com
// @grant GM_xmlhttpRequest
// @grant GM_registerMenuCommand
// ==/UserScript==
(function() {
'use strict';
const SYMBOL_TO_CODE_MAPPING = {
'₸': 'KZT',
'$': 'USD',
'₴': 'UAH',
}
let state = {
source_symbol: undefined
}
async function getRates() {
const arr = await new Promise((resolve, reject) => {
GM_xmlhttpRequest({
method: 'GET',
url: 'https://www.cbr-xml-daily.ru/daily_utf8.xml',
onload: function(res) {
const valutes = res.responseXML.getElementsByTagName('Valute');
resolve([...valutes].map((valute) => {
const charCode = valute.getElementsByTagName('CharCode')[0].textContent;
const value = parseFloat(valute.getElementsByTagName('Value')[0].textContent.replace(',', '.'));
const nominal = parseFloat(valute.getElementsByTagName('Nominal')[0].textContent.replace(',', '.'));
return {
charCode,
value: +(value / nominal).toFixed(4)
}
}))
},
})
})
return Object.fromEntries(
arr.map(obj => [obj.charCode, obj])
);
}
function getCurrentValute() {
const walletText = document.getElementById('header_wallet_balance').innerText;
const symbol = Object.keys(SYMBOL_TO_CODE_MAPPING).find(symbol => walletText.includes(symbol))
return SYMBOL_TO_CODE_MAPPING[symbol];
}
async function main() {
const rates = await getRates();
const source_valute = getCurrentValute();
if (!source_valute) {
return;
}
const convert = (n) => +(n * rates[source_valute].value).toFixed(2);
replace(convert);
GM_registerMenuCommand("update", () => replace(convert), "u");
}
function replace(convert) {
let r = document.evaluate('//text()[contains(., \"₸\")]',document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
for (let i = 0; i < r.snapshotLength; i++) {
let n = r.snapshotItem(i);
const value = parseFloat(n.textContent.replace(" ", "").replace(',', '.'))
n.replaceWith(`${convert(value)}`);
console.log(n)
}
}
main();
})();