Last active
December 7, 2018 05:49
-
-
Save NuarkNoir/b777616e5a2a0b071252bb959900f88b to your computer and use it in GitHub Desktop.
Считает стоимость всех подарков вконтакте
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
## Как? | |
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