/*
* @title Amazonほしいものリスト合計金額
* @description Amazon のほしいものリストの合計金額を表示します。
* @include http://*
* @license MIT License
* @require
*/
var cost = 0;
document.querySelectorAll('#g-items .a-price-whole').forEach((price) => {
cost += parseInt(price.textContent);
});
window.alert(cost);