Ever wanted to get an alert from your favoite stock / sport / news site,
but that site didnt have an API you can hook into?
Monitor is a chrome extension that checks the site's HTML
for an element that holds your data, like:
<div
id="my-stock">17.69$</div>
and alerts you when its changed to a value you configured
each cell in the array relates to 1 html element.
goto the site, open chrome dev console, find the element and fill:
3.1 title - a text to display in the alert, like "my stock"
3.2 condition -
"<" , ">" , "="
3.3 value - if the element reaches that value, alert
3.4 jquery - the
jquery selector to find it, like
"#my-stock"
important: every time you change config.js,
goto chrome://extensions, refrsh monitor

then refresh page and see: how to run