Filter types
Each watch has three filter fields, accessible from the Watch Settings gear icon:Monitor Only (include filters)
CSS or XPath selectors that limit monitoring to specific page sections. Only content matching these selectors is tracked — everything else is ignored. CSS examples:#price— element with id “price”.product-info— elements with class “product-info”table.rates— a table with class “rates”h1, h2, h3— all headings
//*[@id="price-table"]— element with id “price-table”//div[@class="rates"]— div with class “rates”//table[1]— the first table on the page
Exclude Elements (subtractive selectors)
CSS selectors for elements to remove before checking for changes. Useful for filtering out noisy sections while keeping the rest of the page. Examples:.cookie-banner— remove cookie consent banners#ads— remove ad sectionsnav, footer— remove navigation and footer.sidebar— remove sidebar content
Text Patterns (ignore text)
Text strings or regex patterns to exclude from change detection. Any matching text is stripped before comparing snapshots. Plain text:Last updated — ignores any line containing this text
Regex: /\d{1,2}:\d{2}\s*(AM|PM)?/i — ignores timestamps like “3:45 PM”
Regex patterns must be wrapped in /pattern/ with optional flags (i for case-insensitive).
Finding selectors with DevTools
- Right-click the element you want to monitor in your browser
- Click Inspect (or Inspect Element)
- In the DevTools Elements panel, look for the element’s
idorclass - Use
#id-namefor IDs or.class-namefor classes

