Skip to content

Instantly share code, notes, and snippets.

@NuarkNoir
Last active December 7, 2018 05:49
Show Gist options
  • Save NuarkNoir/b777616e5a2a0b071252bb959900f88b to your computer and use it in GitHub Desktop.
Save NuarkNoir/b777616e5a2a0b071252bb959900f88b to your computer and use it in GitHub Desktop.
Считает стоимость всех подарков вконтакте
/*
## Как?
1. Переходим на страницу человека, у которого нет стикеров (https://vk.com/{whatever})
2. Открываем меню подарков, переходим в раздел стикеров
3. F12, Ctrl+V, Enter
*/
let sum = 0;
document.querySelectorAll("#gifts_box_stickers .gift_cell").forEach(x => {
let price = (+x.outerHTML.split(/'/)[1].split(/ /)[0]);
if (isNaN(price))
price = 0;
sum += price;
})
alert(`${sum} руб.`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment