jasontbradshaw / amazon-wish-list-total

An extension that totals up the price of all items in the current Amazon wish list.
MIT License
37 stars 11 forks source link

Use `MutationObserver` for simpler re-parsing #13

Closed jasontbradshaw closed 7 years ago

jasontbradshaw commented 7 years ago

When the list changes, the DOM changes. Hence, if the DOM isn't changing, we have no need to re-parse the page and re-render the total.

This should be extremely responsive, less resource-intensive than polling, and is much simpler to understand and maintain, to boot.